Skip to content

Commit 14f1d29

Browse files
committed
Latest phpunit.xml options and schema
1 parent b3767c2 commit 14f1d29

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

phpunit.xml.dist

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
32
<!-- https://phpunit.readthedocs.io/en/stable/configuration.html -->
43
<phpunit
54
xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
6-
xsi:noNamespaceSchemaLocation = "vendor/phpunit/phpunit/phpunit.xsd"
5+
xsi:noNamespaceSchemaLocation = "https://schema.phpunit.de/9.3/phpunit.xsd"
76
colors = "true"
87
bootstrap = "vendor/autoload.php">
98

9+
<coverage>
10+
<include>
11+
<directory>src</directory>
12+
</include>
13+
</coverage>
14+
1015
<testsuites>
1116
<testsuite name="Project Test Suite">
1217
<directory>tests</directory>
@@ -28,10 +33,4 @@
2833
</extension>
2934
</extensions>
3035

31-
<filter>
32-
<whitelist>
33-
<directory>src</directory>
34-
</whitelist>
35-
</filter>
36-
3736
</phpunit>

0 commit comments

Comments
 (0)