Skip to content

Commit 415e8fd

Browse files
committed
Updated PHPUnit xml configuration
1 parent 14aa47c commit 415e8fd

File tree

1 file changed

+15
-12
lines changed

1 file changed

+15
-12
lines changed

phpunit.xml.dist

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
1-
<phpunit bootstrap="tests/bootstrap.php"
2-
backupGlobals="false"
3-
backupStaticAttributes="false"
4-
colors="true"
5-
convertDeprecationsToExceptions="true"
6-
convertErrorsToExceptions="true"
7-
convertNoticesToExceptions="true"
8-
convertWarningsToExceptions="true"
9-
processIsolation="false"
10-
stopOnFailure="false"
11-
>
1+
<?xml version="1.0"?>
2+
<phpunit
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
5+
bootstrap="tests/bootstrap.php"
6+
backupGlobals="false"
7+
backupStaticAttributes="false"
8+
colors="true"
9+
convertDeprecationsToExceptions="true"
10+
convertErrorsToExceptions="true"
11+
convertNoticesToExceptions="true"
12+
convertWarningsToExceptions="true"
13+
processIsolation="false"
14+
stopOnFailure="false">
15+
1216
<testsuites>
1317
<testsuite name="Default tests">
1418
<directory>tests</directory>
1519
</testsuite>
1620
</testsuites>
17-
1821
</phpunit>

0 commit comments

Comments
 (0)