|
1 | | -<phpunit |
2 | | - bootstrap="tests/bootstrap.php" |
3 | | - colors="true" |
4 | | - backupGlobals="false" |
5 | | - backupStaticAttributes="false" |
6 | | - beStrictAboutChangesToGlobalState="true" |
7 | | - beStrictAboutOutputDuringTests="true" |
8 | | - beStrictAboutTestsThatDoNotTestAnything="true" |
9 | | - beStrictAboutTodoAnnotatedTests="true" |
10 | | - failOnRisky="true" |
11 | | - failOnWarning="true" |
12 | | - convertErrorsToExceptions="true" |
13 | | - convertNoticesToExceptions="true" |
14 | | - convertWarningsToExceptions="true" |
| 1 | +<?xml version="1.0"?> |
| 2 | +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" |
| 4 | + bootstrap="tests/bootstrap.php" |
| 5 | + colors="true" |
| 6 | + backupGlobals="false" |
| 7 | + backupStaticAttributes="false" |
| 8 | + beStrictAboutChangesToGlobalState="true" |
| 9 | + beStrictAboutOutputDuringTests="true" |
| 10 | + beStrictAboutTestsThatDoNotTestAnything="true" |
| 11 | + beStrictAboutTodoAnnotatedTests="true" |
| 12 | + failOnRisky="true" |
| 13 | + failOnWarning="true" |
| 14 | + convertErrorsToExceptions="true" |
| 15 | + convertNoticesToExceptions="true" |
| 16 | + convertWarningsToExceptions="true" |
15 | 17 | > |
16 | | - <testsuites> |
17 | | - <testsuite name="Test suite"> |
18 | | - <directory>./tests/</directory> |
19 | | - </testsuite> |
20 | | - </testsuites> |
21 | | - <filter> |
22 | | - <whitelist> |
23 | | - <directory suffix=".php">./src</directory> |
24 | | - </whitelist> |
25 | | - </filter> |
26 | | - <logging> |
27 | | - <log |
28 | | - type="coverage-text" |
29 | | - target="php://stdout" |
30 | | - showUncoveredFiles="true" |
31 | | - showOnlySummary="true" |
32 | | - /> |
33 | | - <log type="coverage-html" target="build/coverage"/> |
34 | | - <log type="coverage-clover" target="build/logs/clover.xml"/> |
35 | | - </logging> |
| 18 | + <testsuites> |
| 19 | + <testsuite name="Test suite"> |
| 20 | + <directory>./tests/</directory> |
| 21 | + </testsuite> |
| 22 | + </testsuites> |
| 23 | + <coverage> |
| 24 | + <include> |
| 25 | + <directory suffix=".php">./src</directory> |
| 26 | + </include> |
| 27 | + <report> |
| 28 | + <clover outputFile="build/logs/clover.xml"/> |
| 29 | + <html outputDirectory="build/coverage"/> |
| 30 | + <text outputFile="php://stdout" showUncoveredFiles="true" showOnlySummary="true"/> |
| 31 | + </report> |
| 32 | + </coverage> |
36 | 33 | </phpunit> |
0 commit comments