Skip to content

Commit f79c7f9

Browse files
committed
Migrate phpunit config.
1 parent 30913c0 commit f79c7f9

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

phpunit.xml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.4/phpunit.xsd"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
44
bootstrap="vendor/autoload.php"
55
colors="true"
66
verbose="true">
7-
<testsuite name="Unit">
8-
<directory suffix="Test.php">tests</directory>
9-
</testsuite>
10-
11-
<filter>
12-
<whitelist processUncoveredFilesFromWhitelist="true">
13-
<directory suffix=".php">src</directory>
14-
</whitelist>
15-
</filter>
16-
</phpunit>
7+
<coverage processUncoveredFiles="true">
8+
<include>
9+
<directory suffix=".php">src</directory>
10+
</include>
11+
</coverage>
12+
<testsuite name="Unit">
13+
<directory suffix="Test.php">tests</directory>
14+
</testsuite>
15+
</phpunit>

0 commit comments

Comments
 (0)