|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 |
| - |
3 | 2 | <!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
|
4 |
| -<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
5 |
| - xsi:noNamespaceSchemaLocation="vendor/bin/.phpunit/phpunit.xsd" |
6 |
| - colors="true" |
7 |
| - bootstrap="vendor/autoload.php" |
8 |
| - failOnRisky="true" |
9 |
| - failOnWarning="true" |
| 3 | +<phpunit |
| 4 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 5 | + xsi:noNamespaceSchemaLocation="vendor/bin/.phpunit/phpunit.xsd" |
| 6 | + colors="true" |
| 7 | + bootstrap="vendor/autoload.php" |
| 8 | + failOnRisky="true" |
| 9 | + failOnWarning="true" |
10 | 10 | >
|
11 | 11 | <php>
|
12 |
| - <ini name="error_reporting" value="-1" /> |
13 |
| - <server name="KERNEL_CLASS" value="Symfony\UX\Autocomplete\Tests\Fixtures\Kernel" /> |
14 |
| - <server name="DATABASE_URL" value="sqlite:///%kernel.project_dir%/var/data.db" /> |
| 12 | + <ini name="error_reporting" value="-1"/> |
15 | 13 | <env name="SHELL_VERBOSITY" value="-1"/>
|
16 |
| - <server name="SYMFONY_DEPRECATIONS_HELPER" value="max[self]=0&max[direct]=0"/> |
| 14 | + <env name="SYMFONY_DEPRECATIONS_HELPER" value="max[self]=0&max[direct]=0"/> |
| 15 | + <env name="KERNEL_CLASS" value="Symfony\UX\Autocomplete\Tests\Fixtures\Kernel"/> |
| 16 | + <env name="DATABASE_URL" value="sqlite:///%kernel.project_dir%/var/data.db"/> |
17 | 17 | </php>
|
18 | 18 |
|
19 | 19 | <testsuites>
|
20 |
| - <testsuite name="symfony/ux-autocomplete Test Suite"> |
21 |
| - <directory>./tests/</directory> |
| 20 | + <testsuite name="Symfony UX Autocomplete Test Suite"> |
| 21 | + <directory>./tests</directory> |
22 | 22 | </testsuite>
|
23 | 23 | </testsuites>
|
24 | 24 |
|
25 |
| - <filter> |
26 |
| - <whitelist processUncoveredFilesFromWhitelist="true"> |
27 |
| - <directory suffix=".php">./src</directory> |
28 |
| - </whitelist> |
29 |
| - </filter> |
30 |
| - |
31 |
| - <listeners> |
32 |
| - <listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener"/> |
33 |
| - </listeners> |
| 25 | + <coverage> |
| 26 | + <include> |
| 27 | + <directory>./src</directory> |
| 28 | + </include> |
| 29 | + </coverage> |
34 | 30 | </phpunit>
|
0 commit comments