Skip to content

Commit ff3ce8f

Browse files
Fix phpunit config schema for current version
1 parent 4f66db3 commit ff3ce8f

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

phpunit.xml.dist

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
5-
bootstrap="./vendor/autoload.php"
6-
backupGlobals="false" verbose="true"
7-
beStrictAboutOutputDuringTests="true"
8-
beStrictAboutChangesToGlobalState="true">
9-
<coverage>
10-
<include>
11-
<directory suffix=".php">src</directory>
12-
</include>
13-
<exclude>
14-
<directory>src/Resources</directory>
15-
</exclude>
16-
</coverage>
17-
<testsuite name="classes">
18-
<directory suffix="Test.php">tests</directory>
19-
</testsuite>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
4+
bootstrap="./vendor/autoload.php"
5+
executionOrder="random"
6+
cacheDirectory=".phpunit.cache">
7+
<testsuite name="classes">
8+
<directory>tests</directory>
9+
</testsuite>
10+
11+
<coverage/>
12+
<source>
13+
<include>
14+
<directory suffix=".php">src</directory>
15+
</include>
16+
<exclude>
17+
<directory>src/Resources</directory>
18+
</exclude>
19+
</source>
2020
</phpunit>

0 commit comments

Comments
 (0)