Skip to content

Commit a3c1aec

Browse files
committed
adding XSD to PHPUnit file
1 parent 2ca6f24 commit a3c1aec

File tree

1 file changed

+20
-17
lines changed

1 file changed

+20
-17
lines changed

phpunit.xml.dist

Lines changed: 20 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

3-
<phpunit backupGlobals="false"
3+
<phpunit
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.5/phpunit.xsd"
6+
backupGlobals="false"
47
backupStaticAttributes="false"
58
colors="true"
69
convertErrorsToExceptions="true"
@@ -10,21 +13,21 @@
1013
stopOnFailure="false"
1114
bootstrap="tests/Bootstrap.php"
1215
>
13-
<testsuites>
14-
<testsuite name="GraphQLite Test Suite">
15-
<directory>./tests/</directory>
16-
<exclude>./tests/dependencies/</exclude>
17-
<exclude>./tests/Bootstrap.php</exclude>
18-
</testsuite>
19-
</testsuites>
16+
<testsuites>
17+
<testsuite name="GraphQLite Test Suite">
18+
<directory>./tests/</directory>
19+
<exclude>./tests/dependencies/</exclude>
20+
<exclude>./tests/Bootstrap.php</exclude>
21+
</testsuite>
22+
</testsuites>
2023

21-
<filter>
22-
<whitelist processUncoveredFilesFromWhitelist="true">
23-
<directory suffix=".php">src/</directory>
24-
</whitelist>
25-
</filter>
26-
<logging>
27-
<log type="coverage-html" target="build/coverage"/>
28-
<log type="coverage-clover" target="build/logs/clover.xml"/>
29-
</logging>
24+
<filter>
25+
<whitelist processUncoveredFilesFromWhitelist="true">
26+
<directory suffix=".php">src/</directory>
27+
</whitelist>
28+
</filter>
29+
<logging>
30+
<log type="coverage-html" target="build/coverage"/>
31+
<log type="coverage-clover" target="build/logs/clover.xml"/>
32+
</logging>
3033
</phpunit>

0 commit comments

Comments
 (0)