Skip to content
This repository was archived by the owner on Nov 27, 2020. It is now read-only.

Commit ae8bab2

Browse files
committed
minor #678 update PHPUnit configuration (add XSD, remove defaults, proper formatting) (craue)
This PR was merged into the 2.3 branch. Discussion ---------- update PHPUnit configuration (add XSD, remove defaults, proper formatting) | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | -- | License | MIT | Doc PR | -- See symfony/symfony#11344. Commits ------- 324692e updated PHPUnit configuration (added XSD, removed defaults, proper formatting)
2 parents 17179b6 + 324692e commit ae8bab2

File tree

1 file changed

+7
-14
lines changed

1 file changed

+7
-14
lines changed

app/phpunit.xml.dist

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

3-
<!-- http://phpunit.de/manual/current/en/appendixes.configuration.html -->
4-
<phpunit
5-
backupGlobals = "false"
6-
backupStaticAttributes = "false"
7-
colors = "true"
8-
convertErrorsToExceptions = "true"
9-
convertNoticesToExceptions = "true"
10-
convertWarningsToExceptions = "true"
11-
processIsolation = "false"
12-
stopOnFailure = "false"
13-
syntaxCheck = "false"
14-
bootstrap = "bootstrap.php.cache" >
15-
3+
<!-- http://phpunit.de/manual/4.1/en/appendixes.configuration.html -->
4+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
6+
backupGlobals="false"
7+
colors="true"
8+
bootstrap="bootstrap.php.cache"
9+
>
1610
<testsuites>
1711
<testsuite name="Project Test Suite">
1812
<directory>../src/*/*Bundle/Tests</directory>
@@ -37,5 +31,4 @@
3731
</exclude>
3832
</whitelist>
3933
</filter>
40-
4134
</phpunit>

0 commit comments

Comments
 (0)