Skip to content

Commit

Permalink
[TASK] Configure PHPUnit to be more strict
Browse files Browse the repository at this point in the history
This is the v8.x backport of #743.
  • Loading branch information
oliverklee committed Oct 26, 2024
1 parent 068853d commit 13aab78
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/4.8/phpunit.xsd">
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/5.7/phpunit.xsd"
beStrictAboutChangesToGlobalState="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
cacheResult="false"
colors="true"
convertDeprecationsToExceptions="true"
forceCoversAnnotation="true"
verbose="true"
>
<testsuites>
<testsuite name="Project Test Suite">
<directory>tests</directory>
Expand Down

0 comments on commit 13aab78

Please sign in to comment.