Skip to content

Commit 347f30b

Browse files
committed
Update phpunit.xml.dist
Add schema and remove redundant and incorrect values.
1 parent 9da1154 commit 347f30b

File tree

1 file changed

+6
-12
lines changed

1 file changed

+6
-12
lines changed

phpunit.xml.dist

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit
3-
backupGlobals="false"
4-
backupStaticAttributes="false"
5-
bootstrap="tests/bootstrap.php"
6-
colors="true">
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.3/phpunit.xsd"
5+
bootstrap="tests/bootstrap.php"
6+
colors="true">
77

88
<testsuite name="php-domain-parser">
99
<directory>tests/src</directory>
@@ -17,17 +17,11 @@
1717

1818
<logging>
1919
<log type="coverage-html"
20-
target="build/coverage"
21-
charset="UTF-8"
22-
yui="true"
23-
highlight="true"
24-
lowUpperBound="40"
25-
highLowerBound="70" />
20+
target="build/coverage"
21+
lowUpperBound="40" />
2622
<log type="testdox-html" target="build/coverage/log/testdox.html" />
2723
<log type="junit" target="build/report.junit.xml"/>
2824
<log type="coverage-text" target="build/coverage.txt"/>
2925
<log type="coverage-clover" target="build/clover.xml"/>
3026
</logging>
31-
<logging>
32-
</logging>
3327
</phpunit>

0 commit comments

Comments
 (0)