Skip to content

Commit 7be212a

Browse files
committed
Migrate configuration.
1 parent 2d10228 commit 7be212a

File tree

1 file changed

+20
-18
lines changed

1 file changed

+20
-18
lines changed

phpunit.xml

Lines changed: 20 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
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>
1921
</phpunit>

0 commit comments

Comments
 (0)