|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | - |
3 | 2 | <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | | - xsi:noNamespaceSchemaLocation="vendor/bin/.phpunit/phpunit.xsd" |
| 3 | + xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" |
5 | 4 | colors="true" |
6 | 5 | bootstrap="vendor/autoload.php" |
7 | | - > |
| 6 | + cacheDirectory=".phpunit.cache" |
| 7 | + requireCoverageMetadata="true" |
| 8 | + beStrictAboutCoverageMetadata="true" |
| 9 | + beStrictAboutOutputDuringTests="true" |
| 10 | + displayDetailsOnPhpunitDeprecations="true" |
| 11 | + failOnPhpunitDeprecation="true" |
| 12 | + failOnRisky="true" |
| 13 | + failOnWarning="true" |
| 14 | +> |
8 | 15 |
|
9 | 16 | <php> |
10 | 17 | <ini name="error_reporting" value="-1" /> |
11 | | - <server name="SYMFONY_PHPUNIT_VERSION" value="9.5" /> |
12 | | - <env name="SYMFONY_DEPRECATIONS_HELPER" value="max[indirect]=1" /> |
| 18 | + <server name="SYMFONY_PHPUNIT_VERSION" value="11.5" /> |
| 19 | + <env name="SYMFONY_DEPRECATIONS_HELPER" value="max[total]=13&max[indirect]=6" /> |
13 | 20 | </php> |
14 | 21 |
|
15 | 22 | <testsuites> |
16 | 23 | <testsuite name="NbgroupEnvBundle Test Suite"> |
17 | | - <directory>./tests/</directory> |
| 24 | + <directory>tests</directory> |
18 | 25 | </testsuite> |
19 | 26 | </testsuites> |
20 | 27 |
|
21 | | - <coverage cacheDirectory=".phpunit.cache/code-coverage" |
22 | | - processUncoveredFiles="true" |
| 28 | + <source ignoreIndirectDeprecations="true" |
| 29 | + restrictNotices="true" |
| 30 | + restrictWarnings="true" |
23 | 31 | > |
24 | 32 | <include> |
25 | | - <directory suffix=".php">src</directory> |
| 33 | + <directory>src</directory> |
26 | 34 | </include> |
27 | | - <exclude> |
28 | | - <file>src/CsvEnvVarProcessor.php</file> |
29 | | - <file>src/NbgroupEnvBundle.php</file> |
30 | | - </exclude> |
| 35 | + </source> |
| 36 | + |
| 37 | + <coverage> |
31 | 38 | <report> |
32 | 39 | <clover outputFile="clover.xml" /> |
33 | 40 | </report> |
|
0 commit comments