Skip to content

Commit 5cc8006

Browse files
committed
[TASK] Configure PHPUnit to be more strict
This is the v8.x backport of #743.
1 parent 81582a7 commit 5cc8006

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

phpunit.xml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
1-
<phpunit
2-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/4.8/phpunit.xsd">
1+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/5.7/phpunit.xsd"
3+
beStrictAboutChangesToGlobalState="true"
4+
beStrictAboutOutputDuringTests="true"
5+
beStrictAboutTodoAnnotatedTests="true"
6+
bootstrap="vendor/autoload.php"
7+
colors="true"
8+
convertDeprecationsToExceptions="true"
9+
forceCoversAnnotation="true"
10+
verbose="true">
411
<testsuites>
512
<testsuite name="Project Test Suite">
613
<directory>tests</directory>

0 commit comments

Comments
 (0)