|
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 | + <coverage processUncoveredFiles="true"> |
| 12 | + <include> |
| 13 | + <directory suffix=".php">./src</directory> |
| 14 | + </include> |
| 15 | + </coverage> |
11 | 16 | <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" /> |
| 17 | + <ini name="error_reporting" value="-1"/> |
| 18 | + <server name="KERNEL_CLASS" value="Symfony\UX\Autocomplete\Tests\Fixtures\Kernel"/> |
| 19 | + <server name="DATABASE_URL" value="sqlite:///%kernel.project_dir%/var/data.db"/> |
15 | 20 | <env name="SHELL_VERBOSITY" value="-1"/> |
16 | 21 | <server name="SYMFONY_DEPRECATIONS_HELPER" value="max[self]=0&max[direct]=0"/> |
17 | 22 | </php> |
18 | | - |
19 | 23 | <testsuites> |
20 | 24 | <testsuite name="symfony/ux-autocomplete Test Suite"> |
21 | 25 | <directory>./tests/</directory> |
22 | 26 | </testsuite> |
23 | 27 | </testsuites> |
24 | | - |
25 | | - <filter> |
26 | | - <whitelist processUncoveredFilesFromWhitelist="true"> |
27 | | - <directory suffix=".php">./src</directory> |
28 | | - </whitelist> |
29 | | - </filter> |
30 | | - |
31 | 28 | <listeners> |
32 | 29 | <listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener"/> |
33 | 30 | </listeners> |
34 | | - |
35 | 31 | <extensions> |
36 | | - <extension class="Zenstruck\Browser\Test\BrowserExtension" /> |
| 32 | + <extension class="Zenstruck\Browser\Test\BrowserExtension"/> |
37 | 33 | </extensions> |
38 | 34 | </phpunit> |
0 commit comments