|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<phpunit |
3 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | | - xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd" |
5 | | - bootstrap="./tests/Integration/bootstrap.php" |
6 | | - backupGlobals="false" |
7 | | - beStrictAboutCoversAnnotation="true" |
8 | | - beStrictAboutTestsThatDoNotTestAnything="true" |
9 | | - colors="true" |
10 | | - convertDeprecationsToExceptions="true" |
11 | | - testdox="true" |
12 | | -> |
13 | | - <php> |
14 | | - <server name="SERVER_PORT" value="80"/> |
15 | | - <server name="HTTP_HOST" value="localhost"/> |
16 | | - <server name="REMOTE_ADDR" value="127.0.0.1"/> |
17 | | - </php> |
18 | | - <testsuites> |
19 | | - <testsuite name="integration"> |
20 | | - <directory>./tests/Integration</directory> |
21 | | - </testsuite> |
22 | | - </testsuites> |
23 | | - <coverage> |
24 | | - <include> |
25 | | - <directory suffix=".php">src</directory> |
26 | | - <file>ad-code-manager.php</file> |
27 | | - </include> |
| 2 | +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.6/phpunit.xsd" |
| 4 | + bootstrap="./tests/Integration/bootstrap.php" |
| 5 | + cacheResultFile=".phpunit.cache/test-results" |
| 6 | + executionOrder="depends,defects" |
| 7 | + forceCoversAnnotation="false" |
| 8 | + beStrictAboutCoversAnnotation="true" |
| 9 | + beStrictAboutOutputDuringTests="true" |
| 10 | + beStrictAboutTodoAnnotatedTests="true" |
| 11 | + colors="true" |
| 12 | + convertDeprecationsToExceptions="true" |
| 13 | + failOnRisky="true" |
| 14 | + failOnWarning="true" |
| 15 | + testdox="true" |
| 16 | + verbose="true"> |
| 17 | + <testsuites> |
| 18 | + <testsuite name="integration"> |
| 19 | + <directory>tests/Integration</directory> |
| 20 | + </testsuite> |
| 21 | + </testsuites> |
| 22 | + |
| 23 | + <coverage cacheDirectory=".phpunit.cache/code-coverage" |
| 24 | + processUncoveredFiles="true"> |
| 25 | + <include> |
| 26 | + <directory suffix=".php">src</directory> |
| 27 | + </include> |
28 | 28 | <report> |
29 | 29 | <text outputFile="php://stdout"/> |
| 30 | + <clover outputFile="clover.xml"/> |
30 | 31 | </report> |
31 | | - </coverage> |
| 32 | + </coverage> |
32 | 33 | </phpunit> |
0 commit comments