Skip to content

Commit b21c39d

Browse files
authored
Merge pull request #341 from localheinz/fix/phpunit
Fix: Clean up phpunit.xml.dist
2 parents 8a66c0e + 1c56088 commit b21c39d

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

phpunit.xml.dist

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

3-
<phpunit bootstrap="./vendor/autoload.php"
3+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/7.4/phpunit.xsd"
5+
bootstrap="./vendor/autoload.php"
46
colors="true"
57
convertErrorsToExceptions="true"
68
convertNoticesToExceptions="true"
7-
convertWarningsToExceptions="true"
8-
syntaxCheck="true">
9+
convertWarningsToExceptions="true">
910
<php>
1011
<env name="SHELL_VERBOSITY" value="-1" />
12+
<server name="KERNEL_DIR" value="./tests/Resources/app" />
13+
<server name="KERNEL_CLASS" value="AppKernel" />
1114
</php>
1215

1316
<testsuites>
@@ -29,9 +32,4 @@
2932
</exclude>
3033
</whitelist>
3134
</filter>
32-
33-
<php>
34-
<server name="KERNEL_DIR" value="./tests/Resources/app" />
35-
<server name="KERNEL_CLASS" value="AppKernel" />
36-
</php>
3735
</phpunit>

0 commit comments

Comments
 (0)