Skip to content

Commit 32e6c55

Browse files
Merge pull request #315 from alleyinteractive/renatonascalves-patch-1
Update `phpunit.xml`: `convertDeprecationsToExceptions="true"`
2 parents d1c1437 + a7bb37e commit 32e6c55

File tree

1 file changed

+9
-16
lines changed

1 file changed

+9
-16
lines changed

phpunit.xml

Lines changed: 9 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,10 @@
1-
<phpunit
2-
bootstrap="tests/bootstrap.php"
3-
backupGlobals="false"
4-
colors="true"
5-
convertErrorsToExceptions="true"
6-
convertNoticesToExceptions="true"
7-
convertWarningsToExceptions="true"
8-
>
9-
<testsuites>
10-
<testsuite name="Feature">
11-
<directory suffix=".php">tests/Feature</directory>
12-
</testsuite>
13-
<testsuite name="Unit">
14-
<directory suffix=".php">tests/Unit</directory>
15-
</testsuite>
16-
</testsuites>
1+
<phpunit bootstrap="tests/bootstrap.php" backupGlobals="false" colors="true" convertDeprecationsToExceptions="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true">
2+
<testsuites>
3+
<testsuite name="Feature">
4+
<directory suffix=".php">tests/Feature</directory>
5+
</testsuite>
6+
<testsuite name="Unit">
7+
<directory suffix=".php">tests/Unit</directory>
8+
</testsuite>
9+
</testsuites>
1710
</phpunit>

0 commit comments

Comments
 (0)