|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <!-- https://phpunit.readthedocs.io/en/latest/configuration.html --> |
3 | | -<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | | - bootstrap="vendor/autoload.php" |
5 | | - backupGlobals="false" |
6 | | - colors="true" |
7 | | - processIsolation="false" |
8 | | - stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"> |
9 | | - <php> |
10 | | - <ini name="display_errors" value="1"/> |
11 | | - <ini name="error_reporting" value="-1"/> |
12 | | - <server name="APP_ENV" value="test" force="true"/> |
13 | | - <server name="SHELL_VERBOSITY" value="-1"/> |
14 | | - <server name="SYMFONY_PHPUNIT_REMOVE" value=""/> |
15 | | - <server name="SYMFONY_PHPUNIT_VERSION" value="9.6"/> |
16 | | - |
17 | | - <!-- ###+ symfony/framework-bundle ### --> |
18 | | - <env name="APP_ENV" value="dev"/> |
19 | | - <env name="APP_SECRET" value="a87958dcb2134d448a20e881478d1826"/> |
20 | | - <!-- ###- symfony/framework-bundle ### --> |
21 | | - </php> |
22 | | - <testsuites> |
23 | | - <testsuite name="Project Test Suite"> |
24 | | - <directory suffix="Test.php">tests</directory> |
25 | | - </testsuite> |
26 | | - </testsuites> |
27 | | - <coverage> |
28 | | - <include> |
29 | | - <directory suffix=".php">src</directory> |
30 | | - </include> |
31 | | - </coverage> |
| 3 | +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" backupGlobals="false" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"> |
| 4 | + <php> |
| 5 | + <ini name="display_errors" value="1"/> |
| 6 | + <ini name="error_reporting" value="-1"/> |
| 7 | + <server name="APP_ENV" value="test" force="true"/> |
| 8 | + <server name="SHELL_VERBOSITY" value="-1"/> |
| 9 | + <server name="SYMFONY_PHPUNIT_REMOVE" value=""/> |
| 10 | + <server name="SYMFONY_PHPUNIT_VERSION" value="9.6"/> |
| 11 | + <!-- ###+ symfony/framework-bundle ### --> |
| 12 | + <env name="APP_ENV" value="dev"/> |
| 13 | + <env name="APP_SECRET" value="a87958dcb2134d448a20e881478d1826"/> |
| 14 | + <!-- ###- symfony/framework-bundle ### --> |
| 15 | + </php> |
| 16 | + <testsuites> |
| 17 | + <testsuite name="Project Test Suite"> |
| 18 | + <directory suffix="Test.php">tests</directory> |
| 19 | + </testsuite> |
| 20 | + </testsuites> |
| 21 | + <source> |
| 22 | + <include> |
| 23 | + <directory suffix=".php">src</directory> |
| 24 | + </include> |
| 25 | + </source> |
32 | 26 | </phpunit> |
0 commit comments