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