|
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="vendor/phpunit/phpunit/phpunit.xsd" |
5 | | - backupGlobals="false" |
6 | | - backupStaticAttributes="false" |
7 | | - bootstrap="vendor/autoload.php" |
8 | | - colors="true" |
9 | | - convertErrorsToExceptions="true" |
10 | | - convertNoticesToExceptions="true" |
11 | | - convertWarningsToExceptions="true" |
12 | | - processIsolation="false" |
13 | | - stopOnFailure="false" |
14 | | - executionOrder="random" |
15 | | - failOnWarning="true" |
16 | | - failOnRisky="true" |
17 | | - failOnEmptyTestSuite="true" |
18 | | - beStrictAboutOutputDuringTests="true" |
19 | | - verbose="true" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd" |
| 5 | + backupGlobals="false" |
| 6 | + bootstrap="vendor/autoload.php" |
| 7 | + colors="true" |
| 8 | + processIsolation="false" |
| 9 | + stopOnFailure="false" |
| 10 | + executionOrder="random" |
| 11 | + failOnWarning="true" |
| 12 | + failOnRisky="true" |
| 13 | + failOnEmptyTestSuite="true" |
| 14 | + beStrictAboutOutputDuringTests="true" |
| 15 | + cacheDirectory=".phpunit.cache" |
| 16 | + backupStaticProperties="false" |
20 | 17 | > |
21 | 18 | <testsuites> |
22 | 19 | <testsuite name="Codinglabs Test Suite"> |
23 | 20 | <directory>tests</directory> |
24 | 21 | </testsuite> |
25 | 22 | </testsuites> |
26 | | - <coverage> |
| 23 | + <logging> |
| 24 | + <junit outputFile="build/report.junit.xml"/> |
| 25 | + </logging> |
| 26 | + <source> |
27 | 27 | <include> |
28 | 28 | <directory suffix=".php">./src</directory> |
29 | 29 | </include> |
| 30 | + </source> |
| 31 | + <coverage> |
30 | 32 | <report> |
31 | 33 | <html outputDirectory="build/coverage"/> |
32 | 34 | <text outputFile="build/coverage.txt"/> |
33 | 35 | <clover outputFile="build/logs/clover.xml"/> |
34 | 36 | </report> |
35 | 37 | </coverage> |
36 | | - <logging> |
37 | | - <junit outputFile="build/report.junit.xml"/> |
38 | | - </logging> |
39 | 38 | </phpunit> |
0 commit comments