Skip to content

Commit 906aac3

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

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

phpunit.xml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
<phpunit
22
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/4.8/phpunit.xsd">
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/5.7/phpunit.xsd"
4+
beStrictAboutChangesToGlobalState="true"
5+
beStrictAboutOutputDuringTests="true"
6+
beStrictAboutTodoAnnotatedTests="true"
7+
cacheResult="false"
8+
colors="true"
9+
convertDeprecationsToExceptions="true"
10+
forceCoversAnnotation="true"
11+
verbose="true"
12+
>
413
<testsuites>
514
<testsuite name="Project Test Suite">
615
<directory>tests</directory>

0 commit comments

Comments
 (0)