Skip to content

Commit

Permalink
Merge pull request #315 from alleyinteractive/renatonascalves-patch-1
Browse files Browse the repository at this point in the history
Update `phpunit.xml`: `convertDeprecationsToExceptions="true"`
  • Loading branch information
renatonascalves authored Jan 30, 2024
2 parents d1c1437 + a7bb37e commit 32e6c55
Showing 1 changed file with 9 additions and 16 deletions.
25 changes: 9 additions & 16 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,17 +1,10 @@
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite name="Feature">
<directory suffix=".php">tests/Feature</directory>
</testsuite>
<testsuite name="Unit">
<directory suffix=".php">tests/Unit</directory>
</testsuite>
</testsuites>
<phpunit bootstrap="tests/bootstrap.php" backupGlobals="false" colors="true" convertDeprecationsToExceptions="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true">
<testsuites>
<testsuite name="Feature">
<directory suffix=".php">tests/Feature</directory>
</testsuite>
<testsuite name="Unit">
<directory suffix=".php">tests/Unit</directory>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit 32e6c55

Please sign in to comment.