Skip to content

Commit 5c25fab

Browse files
committed
Update phpunit.xml file
1 parent 83b92a6 commit 5c25fab

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed

phpunit.xml

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit
3-
bootstrap="tests/bootstrap.php"
4-
colors="true"
5-
verbose="true"
6-
stopOnFailure="false"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
bootstrap="tests/bootstrap.php"
5+
colors="true"
6+
verbose="true"
7+
stopOnFailure="false"
8+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
79
>
8-
<testsuites>
9-
<testsuite name="Plugin Test Suite">
10-
<directory>./tests/</directory>
11-
</testsuite>
12-
</testsuites>
13-
<filter>
14-
<whitelist processUncoveredFilesFromWhitelist="true">
15-
<directory suffix=".php">./</directory>
16-
</whitelist>
17-
</filter>
18-
</phpunit>
10+
<coverage processUncoveredFiles="true">
11+
<include>
12+
<directory suffix=".php">./</directory>
13+
</include>
14+
</coverage>
15+
<testsuites>
16+
<testsuite name="Plugin Test Suite">
17+
<directory>./tests/</directory>
18+
</testsuite>
19+
</testsuites>
20+
</phpunit>

0 commit comments

Comments
 (0)