Skip to content

Commit 109c01a

Browse files
authored
Update phpunit.xml.dist
1 parent 57386f4 commit 109c01a

File tree

1 file changed

+7
-15
lines changed

1 file changed

+7
-15
lines changed

phpunit.xml.dist

+7-15
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit backupGlobals="false"
3-
backupStaticAttributes="false"
4-
bootstrap="./vendor/autoload.php"
5-
colors="true"
6-
convertErrorsToExceptions="true"
7-
convertNoticesToExceptions="true"
8-
convertWarningsToExceptions="true"
9-
processIsolation="false"
10-
stopOnFailure="false">
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" backupStaticAttributes="false" bootstrap="./vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
3+
<coverage processUncoveredFiles="true">
4+
<include>
5+
<directory suffix=".php">./src</directory>
6+
</include>
7+
</coverage>
118
<testsuites>
129
<testsuite name="Unit">
1310
<directory>./tests/Unit</directory>
@@ -16,9 +13,4 @@
1613
<directory>./tests/Feature</directory>
1714
</testsuite>
1815
</testsuites>
19-
<filter>
20-
<whitelist processUncoveredFilesFromWhitelist="true">
21-
<directory suffix=".php">./src</directory>
22-
</whitelist>
23-
</filter>
24-
</phpunit>
16+
</phpunit>

0 commit comments

Comments
 (0)