|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | - |
3 | 2 | <!-- http://phpunit.de/manual/4.1/en/appendixes.configuration.html --> |
4 | 3 | <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
5 | | - xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd" |
6 | | - backupGlobals="false" |
7 | | - colors="true" |
| 4 | + xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" backupGlobals="false" colors="true" |
8 | 5 | bootstrap="../../vendor/autoload.php" |
| 6 | + cacheDirectory="../../var/qa/phpunit.cache" |
9 | 7 | > |
10 | | - <php> |
11 | | - <ini name="error_reporting" value="-1"/> |
12 | | - <server name="APP_ENV" value="test" force="true"/> |
13 | | - <server name="KERNEL_CLASS" value="App\Kernel"/> |
14 | | - <server name="SHELL_VERBOSITY" value="-1"/> |
15 | | - <server name="SYMFONY_PHPUNIT_REMOVE" value=""/> |
16 | | - <server name="SYMFONY_PHPUNIT_VERSION" value="6.5"/> |
17 | | - <env name="SYMFONY_DEPRECATIONS_HELPER" value="weak" /> |
18 | | - </php> |
19 | | - |
20 | | - <testsuites> |
21 | | - <testsuite name="Project Test Suite"> |
22 | | - <directory suffix="Test.php">../../src</directory> |
23 | | - </testsuite> |
24 | | - </testsuites> |
25 | | - <filter> |
26 | | - <whitelist> |
27 | | - <directory>../../src</directory> |
28 | | - <exclude> |
29 | | - <directory suffix="Test.php">../../src</directory> |
30 | | - </exclude> |
31 | | - </whitelist> |
32 | | - </filter> |
33 | | - <listeners> |
34 | | - <listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener"> |
35 | | - <arguments> |
36 | | - <array> |
37 | | - <!-- set this option to 0 to disable the DebugClassLoader integration --> |
38 | | - <element key="debug-class-loader"> |
39 | | - <integer>0</integer> |
40 | | - </element> |
41 | | - </array> |
42 | | - </arguments> |
43 | | - </listener> |
44 | | - </listeners> |
| 8 | + <php> |
| 9 | + <ini name="error_reporting" value="-1"/> |
| 10 | + <server name="APP_ENV" value="test" force="true"/> |
| 11 | + <server name="KERNEL_CLASS" value="App\Kernel"/> |
| 12 | + <server name="SHELL_VERBOSITY" value="-1"/> |
| 13 | + <env name="SYMFONY_DEPRECATIONS_HELPER" value="weak"/> |
| 14 | + </php> |
| 15 | + <testsuites> |
| 16 | + <testsuite name="Project Test Suite"> |
| 17 | + <directory suffix="Test.php">../../src</directory> |
| 18 | + </testsuite> |
| 19 | + </testsuites> |
45 | 20 | </phpunit> |
0 commit comments