We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3767c2 commit 14f1d29Copy full SHA for 14f1d29
phpunit.xml.dist
@@ -1,12 +1,17 @@
1
<?xml version="1.0" encoding="UTF-8"?>
2
-
3
<!-- https://phpunit.readthedocs.io/en/stable/configuration.html -->
4
<phpunit
5
xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
6
- xsi:noNamespaceSchemaLocation = "vendor/phpunit/phpunit/phpunit.xsd"
+ xsi:noNamespaceSchemaLocation = "https://schema.phpunit.de/9.3/phpunit.xsd"
7
colors = "true"
8
bootstrap = "vendor/autoload.php">
9
+ <coverage>
10
+ <include>
11
+ <directory>src</directory>
12
+ </include>
13
+ </coverage>
14
+
15
<testsuites>
16
<testsuite name="Project Test Suite">
17
<directory>tests</directory>
@@ -28,10 +33,4 @@
28
33
</extension>
29
34
</extensions>
30
35
31
- <filter>
32
- <whitelist>
- <directory>src</directory>
- </whitelist>
- </filter>
36
37
</phpunit>
0 commit comments