Skip to content

Commit 81ec44f

Browse files
author
Xavier Marchegay
committed
Fixes #10
* upgrade phpunit configuration file
1 parent 43102fe commit 81ec44f

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

phpunit.xml.dist

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.6/phpunit.xsd"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.0/phpunit.xsd"
44
bootstrap="vendor/autoload.php"
5-
cacheResultFile=".phpunit.cache/test-results"
5+
cacheDirectory=".phpunit.cache"
66
executionOrder="depends,defects"
7-
forceCoversAnnotation="true"
8-
beStrictAboutCoversAnnotation="true"
7+
requireCoverageMetadata="true"
8+
beStrictAboutCoverageMetadata="true"
99
beStrictAboutOutputDuringTests="true"
10-
beStrictAboutTodoAnnotatedTests="true"
11-
convertDeprecationsToExceptions="true"
1210
failOnRisky="true"
13-
failOnWarning="true"
14-
verbose="true">
11+
failOnWarning="true">
12+
1513
<testsuites>
1614
<testsuite name="default">
1715
<directory>tests</directory>
1816
</testsuite>
1917
</testsuites>
2018

21-
<coverage cacheDirectory=".phpunit.cache/code-coverage"
22-
processUncoveredFiles="true">
19+
<source>
2320
<include>
2421
<directory suffix=".php">src</directory>
2522
</include>
23+
</source>
24+
25+
<coverage>
2626
</coverage>
27-
</phpunit>
27+
</phpunit>

0 commit comments

Comments
 (0)