Skip to content

Commit 9cd6446

Browse files
committed
tests: update for version 9.5
Closes #4
1 parent e01cf4f commit 9cd6446

File tree

1 file changed

+21
-24
lines changed

1 file changed

+21
-24
lines changed

Diff for: phpunit.xml

+21-24
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,23 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
3-
<phpunit backupGlobals="false"
4-
backupStaticAttributes="false"
5-
colors="true"
6-
convertErrorsToExceptions="true"
7-
convertNoticesToExceptions="true"
8-
convertWarningsToExceptions="true"
9-
processIsolation="false"
10-
stopOnFailure="false"
11-
syntaxCheck="false"
12-
bootstrap="vendor/autoload.php">
13-
14-
<testsuites>
15-
<testsuite name="Test Suite">
16-
<directory>tests</directory>
17-
</testsuite>
18-
</testsuites>
19-
20-
<filter>
21-
<whitelist>
22-
<directory>src</directory>
23-
</whitelist>
24-
</filter>
25-
2+
<phpunit
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
backupGlobals="false" backupStaticAttributes="false"
5+
colors="true"
6+
convertErrorsToExceptions="false"
7+
convertNoticesToExceptions="false"
8+
convertWarningsToExceptions="false"
9+
processIsolation="false"
10+
stopOnFailure="false"
11+
bootstrap="vendor/autoload.php"
12+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
13+
<coverage>
14+
<include>
15+
<directory>src</directory>
16+
</include>
17+
</coverage>
18+
<testsuites>
19+
<testsuite name="Test Suite">
20+
<directory>tests</directory>
21+
</testsuite>
22+
</testsuites>
2623
</phpunit>

0 commit comments

Comments
 (0)