Skip to content

Commit 6a29c6a

Browse files
committed
3.4 commit phpunit
1 parent 7e9ae45 commit 6a29c6a

File tree

1 file changed

+24
-19
lines changed

1 file changed

+24
-19
lines changed

phpunit.xml

Lines changed: 24 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.6/phpunit.xsd"
4-
bootstrap="vendor/autoload.php"
5-
cacheResultFile=".phpunit.cache/test-results"
6-
executionOrder="depends,defects"
7-
forceCoversAnnotation="true"
8-
beStrictAboutCoversAnnotation="true"
9-
beStrictAboutOutputDuringTests="true"
10-
beStrictAboutTodoAnnotatedTests="true"
11-
convertDeprecationsToExceptions="true"
12-
failOnRisky="true"
13-
failOnWarning="true"
14-
verbose="true">
15-
<testsuites>
16-
<testsuite name="default">
17-
<directory>tests</directory>
18-
</testsuite>
19-
</testsuites>
20-
</phpunit>
2+
<phpunit
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.0/phpunit.xsd"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
bootstrap="vendor/autoload.php"
6+
backupGlobals="false"
7+
colors="true"
8+
processIsolation="false"
9+
stopOnFailure="true"
10+
cacheResult="false"
11+
backupStaticProperties="false"
12+
testdox="true"
13+
stopOnDefect="true"
14+
displayDetailsOnTestsThatTriggerDeprecations="true"
15+
displayDetailsOnTestsThatTriggerErrors="true"
16+
displayDetailsOnTestsThatTriggerNotices="true"
17+
displayDetailsOnTestsThatTriggerWarnings="true"
18+
displayDetailsOnPhpunitDeprecations="true"
19+
>
20+
<source>
21+
<include>
22+
<directory suffix=".php">./src</directory>
23+
</include>
24+
</source>
25+
</phpunit>

0 commit comments

Comments
 (0)