diff options
Diffstat (limited to 'phpunit.xml.dist')
-rw-r--r-- | phpunit.xml.dist | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/phpunit.xml.dist b/phpunit.xml.dist index e68df9de..38880908 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist | |||
@@ -1,24 +1,20 @@ | |||
1 | <?xml version="1.0" encoding="UTF-8"?> | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | ||
3 | <phpunit backupGlobals="false" | 3 | <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | backupStaticAttributes="false" | 4 | xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.8/phpunit.xsd" |
5 | backupGlobals="false" | ||
5 | colors="true" | 6 | colors="true" |
6 | convertErrorsToExceptions="true" | ||
7 | convertNoticesToExceptions="true" | ||
8 | convertWarningsToExceptions="true" | ||
9 | processIsolation="false" | ||
10 | stopOnFailure="false" | ||
11 | syntaxCheck="false" | ||
12 | bootstrap="app/autoload.php" | 7 | bootstrap="app/autoload.php" |
13 | > | 8 | > |
14 | 9 | ||
15 | <testsuites> | 10 | <testsuites> |
16 | <testsuite name="wallabag Test Suite"> | 11 | <testsuite name="wallabag Test Suite"> |
17 | <directory>src/Wallabag/*Bundle/Tests</directory> | 12 | <directory>tests</directory> |
18 | </testsuite> | 13 | </testsuite> |
19 | </testsuites> | 14 | </testsuites> |
20 | 15 | ||
21 | <php> | 16 | <php> |
17 | <ini name="error_reporting" value="-1" /> | ||
22 | <server name="KERNEL_DIR" value="app/" /> | 18 | <server name="KERNEL_DIR" value="app/" /> |
23 | </php> | 19 | </php> |
24 | 20 | ||