File tree Expand file tree Collapse file tree 1 file changed +20
-18
lines changed Expand file tree Collapse file tree 1 file changed +20
-18
lines changed Original file line number Diff line number Diff line change 1
- <phpunit bootstrap =" test/bootstrap.php" >
2
- <testsuites >
3
- <testsuite name =" Tests" >
4
- <directory >test</directory >
5
- </testsuite >
6
- </testsuites >
7
- <filter >
8
- <whitelist processUncoveredFilesFromWhitelist =" true" >
9
- <directory suffix =" .php" >src</directory >
10
- </whitelist >
11
- </filter >
12
- <logging >
13
- <log type =" coverage-html" target =" test/report" />
14
- <log type =" coverage-clover" target =" test/coverage.xml" />
15
- </logging >
16
- <php >
17
- <const name =" PHPUNIT_ERROR_HANDLER_TEST_SUITE" value =" true" />
18
- </php >
1
+ <?xml version =" 1.0" ?>
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" bootstrap =" test/bootstrap.php" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3/phpunit.xsd" >
3
+ <coverage processUncoveredFiles =" true" >
4
+ <include >
5
+ <directory suffix =" .php" >src</directory >
6
+ </include >
7
+ <report >
8
+ <clover outputFile =" test/coverage.xml" />
9
+ <html outputDirectory =" test/report" />
10
+ </report >
11
+ </coverage >
12
+ <testsuites >
13
+ <testsuite name =" Tests" >
14
+ <directory >test</directory >
15
+ </testsuite >
16
+ </testsuites >
17
+ <logging />
18
+ <php >
19
+ <const name =" PHPUNIT_ERROR_HANDLER_TEST_SUITE" value =" true" />
20
+ </php >
19
21
</phpunit >
You can’t perform that action at this time.
0 commit comments