Skip to content

Commit 582310c

Browse files
authored
Merge pull request #35 from bobbrodie/2.0.x
Migrate PHPUnit configuration
2 parents c509bda + 1eae83e commit 582310c

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed

phpunit.xml

+17-15
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!-- http://phpunit.de/manual/4.1/en/appendixes.configuration.html -->
3-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" backupGlobals="false" bootstrap="./vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true">
4-
<coverage>
5-
<include>
6-
<directory suffix=".php">./src</directory>
7-
</include>
8-
<report>
9-
<html outputDirectory="./test/unit/_html" />
10-
</report>
11-
</coverage>
12-
<testsuites>
13-
<testsuite name="Unit">
14-
<directory>./test/unit</directory>
15-
</testsuite>
16-
</testsuites>
17-
<logging/>
3+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" backupGlobals="false" bootstrap="./vendor/autoload.php" colors="true" cacheDirectory=".phpunit.cache">
4+
<coverage>
5+
<report>
6+
<html outputDirectory="./test/unit/_html"/>
7+
</report>
8+
</coverage>
9+
<testsuites>
10+
<testsuite name="Unit">
11+
<directory>./test/unit</directory>
12+
</testsuite>
13+
</testsuites>
14+
<logging/>
15+
<source>
16+
<include>
17+
<directory suffix=".php">./src</directory>
18+
</include>
19+
</source>
1820
</phpunit>

0 commit comments

Comments
 (0)