Skip to content

Commit f0ac8c5

Browse files
authored
fixed phpunit configuration
1 parent 6553451 commit f0ac8c5

File tree

1 file changed

+8
-12
lines changed

1 file changed

+8
-12
lines changed

phpunit.xml

+8-12
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,22 @@
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"
8+
backupStaticProperties="false"
139
>
10+
<coverage>
11+
<include>
12+
<directory suffix=".php">./src</directory>
13+
</include>
14+
</coverage>
1415
<testsuites>
1516
<testsuite name="Package Test Suite">
1617
<directory suffix="Test.php">tests</directory>
1718
</testsuite>
1819
</testsuites>
19-
<filter>
20-
<whitelist processUncoveredFilesFromWhitelist="true">
21-
<directory suffix=".php">./src</directory>
22-
</whitelist>
23-
</filter>
2420
<php>
2521
<env name="CACHE_DRIVER" value="array"/>
2622
<env name="SESSION_DRIVER" value="array"/>

0 commit comments

Comments
 (0)