File tree Expand file tree Collapse file tree 1 file changed +19
-24
lines changed Expand file tree Collapse file tree 1 file changed +19
-24
lines changed Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit bootstrap =" vendor/autoload.php"
3
- backupGlobals =" false"
4
- backupStaticAttributes =" false"
5
- colors =" true"
6
- convertErrorsToExceptions =" true"
7
- convertNoticesToExceptions =" true"
8
- convertWarningsToExceptions =" true"
9
- processIsolation =" false"
10
- stopOnFailure =" false" >
11
- <testsuites >
12
- <testsuite name =" Package Test Suite" >
13
- <directory suffix =" .php" >./tests/</directory >
14
- </testsuite >
15
- </testsuites >
16
- <filter >
17
- <whitelist processUncoveredFilesFromWhitelist =" true" >
18
- <directory >./src/</directory >
19
- </whitelist >
20
- </filter >
21
- <logging >
22
- <log type =" coverage-html" target =" ./tests/log/report"
23
- lowUpperBound =" 35" highLowerBound =" 70" />
24
- <log type =" coverage-clover" target =" ./tests/log/clover.xml" />
25
- </logging >
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" bootstrap =" vendor/autoload.php" backupGlobals =" false" backupStaticAttributes =" false" colors =" true" convertErrorsToExceptions =" true" convertNoticesToExceptions =" true" convertWarningsToExceptions =" true" processIsolation =" false" stopOnFailure =" false" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3/phpunit.xsd" >
3
+ <php >
4
+ <env name =" XDEBUG_MODE" value =" coverage" />
5
+ </php >
6
+ <coverage processUncoveredFiles =" true" >
7
+ <include >
8
+ <directory >./src/</directory >
9
+ </include >
10
+ <report >
11
+ <clover outputFile =" ./tests/log/clover.xml" />
12
+ <html outputDirectory =" ./tests/log/report" lowUpperBound =" 35" highLowerBound =" 70" />
13
+ </report >
14
+ </coverage >
15
+ <testsuites >
16
+ <testsuite name =" Package Test Suite" >
17
+ <directory suffix =" .php" >./tests/</directory >
18
+ </testsuite >
19
+ </testsuites >
20
+ <logging />
26
21
</phpunit >
You can’t perform that action at this time.
0 commit comments