Skip to content

Commit ef6ccdc

Browse files
committed
Update phpunit.xml.dist
1 parent fab7dbb commit ef6ccdc

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

phpunit.xml.dist

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit backupGlobals="false"
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
backupGlobals="false"
34
backupStaticAttributes="false"
45
bootstrap="vendor/autoload.php"
56
colors="true"
67
convertErrorsToExceptions="true"
78
convertNoticesToExceptions="true"
89
convertWarningsToExceptions="true"
910
processIsolation="false"
10-
stopOnFailure="false">
11+
stopOnFailure="false"
12+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
13+
<coverage processUncoveredFiles="true">
14+
<include>
15+
<directory suffix=".php">./src</directory>
16+
</include>
17+
</coverage>
1118
<testsuites>
1219
<testsuite name="Unit">
1320
<directory suffix="Test.php">./tests/Unit</directory>
1421
</testsuite>
1522
</testsuites>
16-
<filter>
17-
<whitelist processUncoveredFilesFromWhitelist="true">
18-
<directory suffix=".php">./src</directory>
19-
</whitelist>
20-
</filter>
2123
<php>
2224
<env name="APP_ENV" value="testing"/>
2325
<env name="CACHE_DRIVER" value="array"/>

0 commit comments

Comments
 (0)