|
1 | | -<?xml version="1.0" encoding="utf-8" ?> |
| 1 | +<?xml version="1.0" encoding="utf-8"?> |
2 | 2 | <phpunit bootstrap="tests/unit/bootstrap.php" |
3 | | - beStrictAboutOutputDuringTests="true" |
4 | | - verbose="true" |
5 | | - failOnRisky="true" |
6 | | - failOnWarning="true" |
7 | | - timeoutForSmallTests="900" |
8 | | - timeoutForMediumTests="900" |
9 | | - timeoutForLargeTests="900" |
10 | | -> |
11 | | - <testsuites> |
12 | | - <testsuite name='unit'> |
13 | | - <directory suffix='Test.php'>./tests/unit</directory> |
14 | | - </testsuite> |
15 | | - </testsuites> |
16 | | - <!-- filters for code coverage --> |
17 | | - <filter> |
18 | | - <whitelist> |
19 | | - <directory suffix=".php">.</directory> |
20 | | - <exclude> |
21 | | - <directory suffix=".php">./vendor</directory> |
22 | | - <directory suffix=".php">./templates</directory> |
23 | | - <directory suffix=".php">./tests</directory> |
24 | | - </exclude> |
25 | | - </whitelist> |
26 | | - </filter> |
27 | | - <logging> |
28 | | - <!-- and this is where your report will be written --> |
29 | | - <log type="coverage-clover" target="./tests/output/clover.xml"/> |
30 | | - </logging> |
| 3 | + beStrictAboutOutputDuringTests="true" |
| 4 | + verbose="true" |
| 5 | + failOnRisky="true" |
| 6 | + failOnWarning="true" |
| 7 | + timeoutForSmallTests="900" |
| 8 | + timeoutForMediumTests="900" |
| 9 | + timeoutForLargeTests="900" |
| 10 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 11 | + xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"> |
| 12 | + <coverage> |
| 13 | + <include> |
| 14 | + <directory suffix=".php">.</directory> |
| 15 | + </include> |
| 16 | + <exclude> |
| 17 | + <directory suffix=".php">./vendor</directory> |
| 18 | + <directory suffix=".php">./templates</directory> |
| 19 | + <directory suffix=".php">./tests</directory> |
| 20 | + </exclude> |
| 21 | + <report> |
| 22 | + <clover outputFile="./tests/output/clover.xml"/> |
| 23 | + </report> |
| 24 | + </coverage> |
| 25 | + <testsuites> |
| 26 | + <testsuite name="unit"> |
| 27 | + <directory suffix="Test.php">./tests/unit</directory> |
| 28 | + </testsuite> |
| 29 | + </testsuites> |
| 30 | + <!-- filters for code coverage --> |
| 31 | + <logging> |
| 32 | + <!-- and this is where your report will be written --> |
| 33 | + </logging> |
31 | 34 | </phpunit> |
0 commit comments