Skip to content

Commit f6530d3

Browse files
committed
Merge branch 'master' into 9.x
2 parents 88e86c9 + a4badad commit f6530d3

File tree

1 file changed

+22
-20
lines changed

1 file changed

+22
-20
lines changed

phpunit.xml.dist

Lines changed: 22 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,31 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit backupGlobals="false"
3-
backupStaticAttributes="false"
4-
beStrictAboutTestsThatDoNotTestAnything="false"
5-
beStrictAboutOutputDuringTests="true"
6-
bootstrap="vendor/autoload.php"
7-
colors="true"
8-
convertErrorsToExceptions="true"
9-
convertNoticesToExceptions="true"
10-
convertWarningsToExceptions="true"
11-
processIsolation="false"
12-
stopOnError="false"
13-
stopOnFailure="false"
14-
verbose="true"
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
3+
backupGlobals="false"
4+
backupStaticAttributes="false"
5+
beStrictAboutTestsThatDoNotTestAnything="false"
6+
beStrictAboutOutputDuringTests="true"
7+
bootstrap="vendor/autoload.php"
8+
colors="true"
9+
convertErrorsToExceptions="true"
10+
convertNoticesToExceptions="true"
11+
convertWarningsToExceptions="true"
12+
processIsolation="false"
13+
stopOnError="false"
14+
stopOnFailure="false"
15+
verbose="true"
1516
>
1617
<testsuites>
1718
<testsuite name="Laravel Helper Functions Test Suite">
1819
<directory suffix="Test.php">./tests</directory>
1920
</testsuite>
2021
</testsuites>
21-
<filter>
22-
<whitelist processUncoveredFilesFromWhitelist="true">
22+
23+
<coverage processUncoveredFiles="true">
24+
<include>
2325
<directory suffix=".php">./src</directory>
24-
<exclude>
25-
<file>./src/autoload.php</file>
26-
</exclude>
27-
</whitelist>
28-
</filter>
26+
</include>
27+
<exclude>
28+
<file>./src/autoload.php</file>
29+
</exclude>
30+
</coverage>
2931
</phpunit>

0 commit comments

Comments
 (0)