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

Commit 6628e22

Browse files
committed
Merge branch '2.4' into 2.5
* 2.4: updated PHPUnit configuration (added XSD, removed defaults, proper formatting) fixed symfony deps Conflicts: composer.json
2 parents 96cf36b + 7dbef21 commit 6628e22

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)