Skip to content

Commit 5664f98

Browse files
committed
update phpunit config
1 parent 9c3d4c9 commit 5664f98

File tree

1 file changed

+23
-9
lines changed

1 file changed

+23
-9
lines changed

phpunit.xml

Lines changed: 23 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,25 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit bootstrap="vendor/autoload.php"
3-
backupGlobals="false"
4-
backupStaticAttributes="false"
5-
colors="true"
6-
verbose="true"
7-
convertErrorsToExceptions="true"
8-
convertNoticesToExceptions="true"
9-
convertWarningsToExceptions="true"
10-
processIsolation="false">
2+
<phpunit
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.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>
1125
</phpunit>

0 commit comments

Comments
 (0)