Skip to content

Commit bc05f86

Browse files
committed
migrate phpunit.xml to 10.x schema
1 parent ca3cd4a commit bc05f86

File tree

1 file changed

+20
-18
lines changed

1 file changed

+20
-18
lines changed

phpunit.xml

Lines changed: 20 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" bootstrap="src/autoload.php"
4-
backupGlobals="false" beStrictAboutOutputDuringTests="true" beStrictAboutTestsThatDoNotTestAnything="true"
5-
beStrictAboutTodoAnnotatedTests="true" verbose="true">
6-
7-
<coverage processUncoveredFiles="true">
8-
<include>
9-
<directory suffix=".php">src</directory>
10-
</include>
11-
<report>
12-
<html outputDirectory="build/coverage/html" lowUpperBound="60" highLowerBound="90" />
13-
</report>
14-
</coverage>
15-
16-
<testsuite name="Tokenizer">
17-
<directory suffix="Test.php">tests</directory>
18-
</testsuite>
19-
2+
<phpunit
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
5+
bootstrap="src/autoload.php"
6+
backupGlobals="false"
7+
beStrictAboutOutputDuringTests="true"
8+
beStrictAboutTestsThatDoNotTestAnything="true">
9+
<coverage>
10+
<report>
11+
<html outputDirectory="build/coverage/html" lowUpperBound="60" highLowerBound="90"/>
12+
</report>
13+
</coverage>
14+
<testsuite name="Tokenizer">
15+
<directory suffix="Test.php">tests</directory>
16+
</testsuite>
17+
<source>
18+
<include>
19+
<directory suffix=".php">src</directory>
20+
</include>
21+
</source>
2022
</phpunit>

0 commit comments

Comments
 (0)