|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <phpunit |
3 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | | - xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" |
5 | | - bootstrap="tests/bootstrap.php" |
6 | | - executionOrder="random" |
7 | | - forceCoversAnnotation="false" |
8 | | - beStrictAboutCoversAnnotation="false" |
9 | | - beStrictAboutOutputDuringTests="true" |
10 | | - beStrictAboutTodoAnnotatedTests="true" |
11 | | - verbose="true" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" |
| 5 | + bootstrap="tests/bootstrap.php" |
| 6 | + executionOrder="random" |
| 7 | + beStrictAboutCoverageMetadata="false" |
| 8 | + beStrictAboutOutputDuringTests="true" |
| 9 | + displayDetailsOnTestsThatTriggerWarnings="true" |
| 10 | + failOnWarning="true" |
| 11 | + failOnPhpunitWarning="true" |
12 | 12 | > |
13 | | - <coverage cacheDirectory=".phpunit.cache/code-coverage" |
14 | | - processUncoveredFiles="true"> |
15 | | - <include> |
16 | | - <directory suffix=".php">src</directory> |
17 | | - </include> |
18 | | - <exclude> |
19 | | - <file>src/bootstrap.php</file> |
20 | | - </exclude> |
21 | | - <report> |
22 | | - <clover outputFile=".phpunit.cache/clover/clover.xml" /> |
23 | | - <html outputDirectory=".phpunit.cache/report" lowUpperBound="99" highLowerBound="99" /> |
24 | | - </report> |
25 | | - </coverage> |
26 | | - <testsuites> |
27 | | - <testsuite name="default"> |
28 | | - <directory suffix="Test.php">tests/Xml</directory> |
29 | | - </testsuite> |
30 | | - </testsuites> |
| 13 | + <source> |
| 14 | + <include> |
| 15 | + <directory suffix=".php">src</directory> |
| 16 | + </include> |
| 17 | + <exclude> |
| 18 | + <file>src/bootstrap.php</file> |
| 19 | + </exclude> |
| 20 | + </source> |
| 21 | + |
| 22 | + <coverage includeUncoveredFiles="true"> |
| 23 | + <report> |
| 24 | + <clover outputFile=".phpunit.cache/clover/clover.xml"/> |
| 25 | + <html outputDirectory=".phpunit.cache/report" lowUpperBound="99" highLowerBound="99"/> |
| 26 | + </report> |
| 27 | + </coverage> |
| 28 | + |
| 29 | + <testsuites> |
| 30 | + <testsuite name="default"> |
| 31 | + <directory suffix="Test.php">tests/Xml</directory> |
| 32 | + </testsuite> |
| 33 | + </testsuites> |
31 | 34 | </phpunit> |
0 commit comments