Skip to content

Commit ac5c094

Browse files
committed
update phpunit.xml to version 9
1 parent 5b2e5eb commit ac5c094

File tree

1 file changed

+17
-30
lines changed

1 file changed

+17
-30
lines changed

phpunit.xml.dist

Lines changed: 17 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,18 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit bootstrap="vendor/autoload.php"
3-
cacheResult="false"
4-
backupGlobals="false"
5-
backupStaticAttributes="false"
6-
colors="true"
7-
convertErrorsToExceptions="true"
8-
convertNoticesToExceptions="true"
9-
convertWarningsToExceptions="true"
10-
processIsolation="false"
11-
stopOnFailure="false">
12-
13-
<testsuites>
14-
<testsuite name="default">
15-
<directory>./tests/</directory>
16-
</testsuite>
17-
</testsuites>
18-
19-
<filter>
20-
<whitelist processUncoveredFilesFromWhitelist="true">
21-
<directory>./src/</directory>
22-
</whitelist>
23-
</filter>
24-
25-
<logging>
26-
<log type="coverage-html" target="./tests/log/report"
27-
lowUpperBound="35" highLowerBound="70"/>
28-
<log type="coverage-clover" target="./tests/log/clover.xml"/>
29-
</logging>
30-
31-
</phpunit>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" cacheResult="false" 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+
<coverage processUncoveredFiles="true">
4+
<include>
5+
<directory>./src/</directory>
6+
</include>
7+
<report>
8+
<clover outputFile="./tests/log/clover.xml"/>
9+
<html outputDirectory="./tests/log/report" lowUpperBound="35" highLowerBound="70"/>
10+
</report>
11+
</coverage>
12+
<testsuites>
13+
<testsuite name="default">
14+
<directory>./tests/</directory>
15+
</testsuite>
16+
</testsuites>
17+
<logging/>
18+
</phpunit>

0 commit comments

Comments
 (0)