|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 | 2 | <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
3 |
| - xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.4/phpunit.xsd" |
4 |
| - bootstrap="vendor/autoload.php" |
5 |
| - cacheResultFile=".phpunit.cache/test-results" |
6 |
| - executionOrder="depends,defects" |
7 |
| - forceCoversAnnotation="true" |
8 |
| - beStrictAboutCoversAnnotation="true" |
9 |
| - beStrictAboutOutputDuringTests="true" |
10 |
| - beStrictAboutTodoAnnotatedTests="true" |
11 |
| - failOnRisky="true" |
12 |
| - failOnWarning="true" |
13 |
| - verbose="true" |
14 |
| - colors="true"> |
15 |
| - <testsuites> |
16 |
| - <testsuite name="default"> |
17 |
| - <directory suffix="Test.php">tests</directory> |
18 |
| - </testsuite> |
19 |
| - </testsuites> |
20 |
| - |
21 |
| - <coverage cacheDirectory=".phpunit.cache/code-coverage" |
22 |
| - processUncoveredFiles="true"> |
23 |
| - <include> |
24 |
| - <directory suffix=".php">src</directory> |
25 |
| - </include> |
26 |
| - </coverage> |
| 3 | + xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" |
| 4 | + bootstrap="vendor/autoload.php" |
| 5 | + executionOrder="depends,defects" |
| 6 | + beStrictAboutOutputDuringTests="true" |
| 7 | + failOnRisky="true" |
| 8 | + failOnWarning="true" |
| 9 | + colors="true" |
| 10 | + cacheDirectory=".phpunit.cache" |
| 11 | + requireCoverageMetadata="true" |
| 12 | + beStrictAboutCoverageMetadata="true"> |
| 13 | + <testsuites> |
| 14 | + <testsuite name="default"> |
| 15 | + <directory suffix="Test.php">tests</directory> |
| 16 | + </testsuite> |
| 17 | + </testsuites> |
| 18 | + <source> |
| 19 | + <include> |
| 20 | + <directory suffix=".php">src</directory> |
| 21 | + </include> |
| 22 | + </source> |
27 | 23 | </phpunit>
|
0 commit comments