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- <exclude >
11- <directory suffix =" .php" >vendor/setbased</directory >
12- </exclude >
13- </whitelist >
14- </filter >
15- <logging >
16- <log type =" coverage-html" target =" test/report" />
17- <log type =" coverage-clover" target =" test/coverage.xml" />
18- </logging >
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+ <exclude >
8+ <directory suffix =" .php" >vendor/setbased</directory >
9+ </exclude >
10+ <report >
11+ <clover outputFile =" test/coverage.xml" />
12+ <html outputDirectory =" test/report" />
13+ </report >
14+ </coverage >
15+ <testsuites >
16+ <testsuite name =" Tests" >
17+ <directory >test</directory >
18+ </testsuite >
19+ </testsuites >
20+ <logging />
1921</phpunit >
You can’t perform that action at this time.
0 commit comments