|
3 | 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | 4 | xsi:noNamespaceSchemaLocation="../vendor/phpunit/phpunit/phpunit.xsd" |
5 | 5 |
|
6 | | - beStrictAboutCoversAnnotation="true" |
| 6 | + beStrictAboutCoverageMetadata="true" |
7 | 7 | beStrictAboutOutputDuringTests="true" |
8 | | - beStrictAboutTodoAnnotatedTests="true" |
9 | 8 | bootstrap="../vendor/autoload.php" |
10 | | - cacheResultFile="../.phpunit.cache/test-results" |
11 | | - convertDeprecationsToExceptions="true" |
| 9 | + cacheDirectory="../build/.phpunit.cache" |
| 10 | + colors="true" |
| 11 | + displayDetailsOnAllIssues="true" |
12 | 12 | failOnRisky="true" |
13 | 13 | failOnWarning="true" |
14 | | - forceCoversAnnotation="true" |
15 | | - verbose="true" |
| 14 | + requireCoverageMetadata="true" |
| 15 | + testdox="true" |
16 | 16 | > |
17 | | - <testsuites> |
18 | | - <testsuite name="all"> |
19 | | - <directory suffix=".php">../tests/</directory> |
20 | | - </testsuite> |
21 | | - </testsuites> |
22 | | - |
23 | | - <coverage cacheDirectory="../.phpunit.cache/code-coverage" processUncoveredFiles="false"> |
24 | | - <include> |
25 | | - <directory suffix=".php">../src/</directory> |
26 | | - </include> |
| 17 | + <coverage cacheDirectory="../build/.phpunit.cache/code-coverage"> |
27 | 18 | <report> |
28 | | - <!-- clover outputFile="build/clover.xml"/ --> |
29 | | - <!-- html outputDirectory="build/coverage"/ --> |
30 | | - <text outputFile="php://stdout"/> |
| 19 | + <!-- clover outputFile="../build/clover.xml"/ --> |
| 20 | + <!-- html outputDirectory="../build/coverage"/ --> |
| 21 | + <text outputFile="php://stdout" /> |
31 | 22 | </report> |
32 | 23 | </coverage> |
| 24 | + <source> |
| 25 | + <include> |
| 26 | + <directory suffix=".php">../src</directory> |
| 27 | + </include> |
| 28 | + </source> |
| 29 | + <testsuites> |
| 30 | + <testsuite name="unit"> |
| 31 | + <directory suffix=".php">../tests/unit</directory> |
| 32 | + </testsuite> |
| 33 | + </testsuites> |
33 | 34 | </phpunit> |
0 commit comments