|
@@ -1,17 +1,16 @@
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
-<!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html -->
|
|
|
-<phpunit
|
|
|
- backupGlobals = "false"
|
|
|
- backupStaticAttributes = "false"
|
|
|
- colors = "true"
|
|
|
- convertErrorsToExceptions = "true"
|
|
|
- convertNoticesToExceptions = "true"
|
|
|
- convertWarningsToExceptions = "true"
|
|
|
- processIsolation = "false"
|
|
|
- stopOnFailure = "false"
|
|
|
- syntaxCheck = "false"
|
|
|
- bootstrap = "app/autoload.php" >
|
|
|
+<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
|
|
|
+<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
+ xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.8/phpunit.xsd"
|
|
|
+ backupGlobals="false"
|
|
|
+ colors="true"
|
|
|
+ bootstrap="app/autoload.php"
|
|
|
+>
|
|
|
+ <php>
|
|
|
+ <ini name="error_reporting" value="-1" />
|
|
|
+ <server name="KERNEL_CLASS" value="AppKernel" />
|
|
|
+ </php>
|
|
|
|
|
|
<testsuites>
|
|
|
<testsuite name="Packagist Test Suite">
|
|
@@ -20,10 +19,6 @@
|
|
|
</testsuite>
|
|
|
</testsuites>
|
|
|
|
|
|
- <php>
|
|
|
- <server name="KERNEL_DIR" value="app/" />
|
|
|
- </php>
|
|
|
-
|
|
|
<filter>
|
|
|
<whitelist>
|
|
|
<directory>src</directory>
|