|
1 | 1 | <?xml version="1.0"?>
|
2 | 2 | <phpunit
|
3 |
| - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 |
| - bootstrap="bootstrap.php" |
5 |
| - colors="true" |
6 |
| - backupGlobals="false" |
7 |
| - backupStaticAttributes="false" |
8 |
| - beStrictAboutTestsThatDoNotTestAnything="true" |
9 |
| - beStrictAboutCoversAnnotation="true" |
10 |
| - beStrictAboutOutputDuringTests="true" |
11 |
| - xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" |
12 |
| - failOnRisky="true" |
13 |
| - convertDeprecationsToExceptions="true" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + bootstrap="bootstrap.php" |
| 5 | + colors="true" |
| 6 | + beStrictAboutCoverageMetadata="true" |
| 7 | + beStrictAboutOutputDuringTests="true" |
| 8 | + xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" |
| 9 | + failOnRisky="true" |
| 10 | + displayDetailsOnTestsThatTriggerWarnings="true" |
| 11 | + displayDetailsOnTestsThatTriggerDeprecations="true" |
| 12 | + displayDetailsOnTestsThatTriggerErrors="true" |
| 13 | + displayDetailsOnTestsThatTriggerNotices="true" |
| 14 | + displayDetailsOnPhpunitDeprecations="true" |
14 | 15 | >
|
15 |
| - <coverage processUncoveredFiles="true"> |
16 |
| - <include> |
17 |
| - <directory suffix=".php">../src</directory> |
18 |
| - </include> |
19 |
| - <report> |
20 |
| - <clover outputFile="../build/log/clover.xml"/> |
21 |
| - <html outputDirectory="../build/log/html" lowUpperBound="0" highLowerBound="99"/> |
22 |
| - <text outputFile="php://stdout" showUncoveredFiles="true" showOnlySummary="true"/> |
23 |
| - </report> |
24 |
| - </coverage> |
25 |
| - <logging/> |
26 |
| - <testsuites> |
27 |
| - <testsuite name="Unit_Tests"> |
28 |
| - <directory>unit</directory> |
29 |
| - </testsuite> |
30 |
| - </testsuites> |
| 16 | + <source> |
| 17 | + <include> |
| 18 | + <directory>../src</directory> |
| 19 | + </include> |
| 20 | + </source> |
| 21 | + <coverage> |
| 22 | + <report> |
| 23 | + <clover outputFile="../build/log/clover.xml"/> |
| 24 | + <html outputDirectory="../build/log/html" lowUpperBound="0" highLowerBound="99"/> |
| 25 | + <text outputFile="php://stdout" showUncoveredFiles="true" showOnlySummary="true"/> |
| 26 | + </report> |
| 27 | + </coverage> |
| 28 | + <logging/> |
| 29 | + <testsuites> |
| 30 | + <testsuite name="Unit_Tests"> |
| 31 | + <directory>unit</directory> |
| 32 | + </testsuite> |
| 33 | + </testsuites> |
31 | 34 | <php>
|
32 |
| - <ini name="error_reporting" value="E_ALL" /> |
| 35 | + <ini name="error_reporting" value="E_ALL"/> |
33 | 36 | </php>
|
34 | 37 | </phpunit>
|
0 commit comments