Skip to content

Commit 311cd0d

Browse files
ISSUE-205: Updated .phpunit.xml.dist files to PHPUnit 8.5
1 parent 01e2d7a commit 311cd0d

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

phpunit.xml.dist

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
32
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/7.5/phpunit.xsd"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.5/phpunit.xsd"
54
bootstrap="vendor/autoload.php"
65
colors="true"
7-
>
6+
executionOrder="depends,defects"
7+
forceCoversAnnotation="false"
8+
beStrictAboutCoversAnnotation="true"
9+
beStrictAboutOutputDuringTests="true"
10+
beStrictAboutTodoAnnotatedTests="true"
11+
verbose="true">
812

913
<testsuites>
1014
<testsuite name="DarkWeb Design Symfony Add-on Constraints Test Suite">
@@ -13,8 +17,8 @@
1317
</testsuites>
1418

1519
<filter>
16-
<whitelist>
17-
<directory>src</directory>
20+
<whitelist processUncoveredFilesFromWhitelist="true">
21+
<directory suffix=".php">src</directory>
1822
</whitelist>
1923
</filter>
2024

0 commit comments

Comments
 (0)