Skip to content

Commit 7e80466

Browse files
authored
fixed phpunit
1 parent d4b6e56 commit 7e80466

File tree

1 file changed

+7
-12
lines changed

1 file changed

+7
-12
lines changed

phpunit.xml

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,21 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit backupGlobals="false"
3-
backupStaticAttributes="false"
4-
bootstrap="vendor/autoload.php"
2+
<phpunit bootstrap="vendor/autoload.php"
53
colors="true"
6-
convertErrorsToExceptions="true"
7-
convertNoticesToExceptions="true"
8-
convertWarningsToExceptions="true"
94
processIsolation="false"
105
stopOnError="false"
116
stopOnFailure="false"
12-
verbose="true"
7+
backupGlobals="false"
138
>
9+
<coverage>
10+
<include>
11+
<directory suffix=".php">./src</directory>
12+
</include>
13+
</coverage>
1414
<testsuites>
1515
<testsuite name="Package Test Suite">
1616
<directory suffix="Test.php">tests</directory>
1717
</testsuite>
1818
</testsuites>
19-
<filter>
20-
<whitelist processUncoveredFilesFromWhitelist="true">
21-
<directory suffix=".php">./src</directory>
22-
</whitelist>
23-
</filter>
2419
<php>
2520
<env name="CACHE_DRIVER" value="array"/>
2621
<env name="SESSION_DRIVER" value="array"/>

0 commit comments

Comments
 (0)