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 a0cb3c9 commit 27ebecfCopy full SHA for 27ebecf
phpunit.xml.dist
@@ -3,18 +3,20 @@
3
convertErrorsToExceptions="true"
4
convertNoticesToExceptions="true"
5
convertWarningsToExceptions="true"
6
- bootstrap="./vendor/autoload.php">
+ bootstrap="./vendor/autoload.php"
7
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8
+ xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
9
10
<testsuites>
11
<testsuite name="Test suite">
12
<directory>./tests/</directory>
13
</testsuite>
14
</testsuites>
15
- <filter>
- <whitelist processUncoveredFilesFromWhitelist="true">
16
+ <coverage processUncoveredFiles="true">
17
+ <include>
18
<directory suffix=".php">src</directory>
- </whitelist>
- </filter>
19
+ </include>
20
+ </coverage>
21
22
</phpunit>
0 commit comments