Skip to content

Commit 89ec315

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

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

phpunit.xml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
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+
beStrictAboutOutputDuringTests="true"
4+
beStrictAboutTodoAnnotatedTests="true"
5+
bootstrap="vendor/autoload.php"
6+
colors="true"
7+
convertDeprecationsToExceptions="true"
8+
forceCoversAnnotation="true"
9+
verbose="true">
410
<testsuites>
511
<testsuite name="Project Test Suite">
612
<directory>tests</directory>

0 commit comments

Comments
 (0)