|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<phpunit |
3 | | - colors="true" |
4 | | - processIsolation="false" |
5 | | - stopOnFailure="false" |
6 | | - bootstrap="./tests/bootstrap.php" |
7 | | - > |
8 | | - <php> |
9 | | - <ini name="memory_limit" value="-1"/> |
10 | | - <ini name="apc.enable_cli" value="1"/> |
11 | | - <env name="FIXTURE_SCHEMA_METADATA" value="./tests/schema.php"/> |
12 | | - </php> |
13 | | - |
14 | | - <!-- Add any additional test suites you want to run here --> |
15 | | - <testsuites> |
16 | | - <testsuite name="Api Test Suite"> |
17 | | - <directory>./tests/TestCase</directory> |
18 | | - </testsuite> |
19 | | - </testsuites> |
20 | | - |
21 | | - <!-- Setup a listener for fixtures --> |
22 | | - <extensions> |
23 | | - <extension class="\Cake\TestSuite\Fixture\PHPUnitExtension" /> |
24 | | - </extensions> |
25 | | - |
26 | | - <!-- Prevent coverage reports from looking in tests and vendors --> |
27 | | - <filter> |
28 | | - <whitelist processUncoveredFilesFromWhitelist="true"> |
29 | | - <directory suffix=".php">./src</directory> |
30 | | - </whitelist> |
31 | | - </filter> |
32 | | - |
| 2 | +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" processIsolation="false" stopOnFailure="false" bootstrap="./tests/bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"> |
| 3 | + <coverage processUncoveredFiles="true"> |
| 4 | + <include> |
| 5 | + <directory suffix=".php">./src</directory> |
| 6 | + </include> |
| 7 | + </coverage> |
| 8 | + <php> |
| 9 | + <ini name="memory_limit" value="-1"/> |
| 10 | + <ini name="apc.enable_cli" value="1"/> |
| 11 | + <env name="FIXTURE_SCHEMA_METADATA" value="./tests/schema.php"/> |
| 12 | + </php> |
| 13 | + <!-- Add any additional test suites you want to run here --> |
| 14 | + <testsuites> |
| 15 | + <testsuite name="Api Test Suite"> |
| 16 | + <directory>./tests/TestCase</directory> |
| 17 | + </testsuite> |
| 18 | + </testsuites> |
| 19 | + <!-- Setup a listener for fixtures --> |
| 20 | + <extensions> |
| 21 | + <extension class="\Cake\TestSuite\Fixture\PHPUnitExtension"/> |
| 22 | + </extensions> |
| 23 | + <!-- Prevent coverage reports from looking in tests and vendors --> |
33 | 24 | </phpunit> |
0 commit comments