Blame view

phpunit.xml.dist 1.14 KB
6c4edfa3   Alexandre   First Commit LabI...
1
2
3
4
5
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
    colors="true"
    processIsolation="false"
    stopOnFailure="false"
07e4c3fb   Etienne Pallier   v4.108.0-3.7.9 - ...
6
    bootstrap="tests/bootstrap.php"
6c4edfa3   Alexandre   First Commit LabI...
7
8
9
10
11
12
13
14
    >
    <php>
        <ini name="memory_limit" value="-1"/>
        <ini name="apc.enable_cli" value="1"/>
    </php>

    <!-- Add any additional test suites you want to run here -->
    <testsuites>
07e4c3fb   Etienne Pallier   v4.108.0-3.7.9 - ...
15
16
        <testsuite name="app">
            <directory>tests/TestCase/</directory>
6c4edfa3   Alexandre   First Commit LabI...
17
18
19
20
21
22
        </testsuite>
        <!-- Add plugin test suites here. -->
    </testsuites>

    <!-- Setup a listener for fixtures -->
    <listeners>
66ad693c   Etienne Pallier   Evolution du fram...
23
        <listener class="Cake\TestSuite\Fixture\FixtureInjector">
6c4edfa3   Alexandre   First Commit LabI...
24
            <arguments>
66ad693c   Etienne Pallier   Evolution du fram...
25
                <object class="Cake\TestSuite\Fixture\FixtureManager"/>
6c4edfa3   Alexandre   First Commit LabI...
26
27
28
29
30
31
32
            </arguments>
        </listener>
    </listeners>

    <!-- Ignore vendor tests in code coverage reports -->
    <filter>
        <whitelist>
07e4c3fb   Etienne Pallier   v4.108.0-3.7.9 - ...
33
34
35
36
37
            <directory suffix=".php">src/</directory>
            <directory suffix=".php">plugins/*/src/</directory>
            <exclude>
                <file>src/Console/Installer.php</file>
            </exclude>
6c4edfa3   Alexandre   First Commit LabI...
38
39
40
        </whitelist>
    </filter>
</phpunit>