diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-01-31 10:29:30 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-01-31 10:29:30 +0100 |
commit | 71691fe44a7b2a80f3b9d96d54720cce7994ad08 (patch) | |
tree | 6089b5574ef56991d36701c84754f420cc3bd64f /app/phpunit.xml.dist | |
parent | fdcbdda1ade822e038727ff1b653b9702ba75d6a (diff) | |
parent | aa6e27cf4fbbb4713b1cdc933c4719ae9da78c71 (diff) | |
download | wallabag-71691fe44a7b2a80f3b9d96d54720cce7994ad08.tar.gz wallabag-71691fe44a7b2a80f3b9d96d54720cce7994ad08.tar.zst wallabag-71691fe44a7b2a80f3b9d96d54720cce7994ad08.zip |
Merge pull request #1035 from j0k3r/refactor
Tests are working again
Diffstat (limited to 'app/phpunit.xml.dist')
-rw-r--r-- | app/phpunit.xml.dist | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/app/phpunit.xml.dist b/app/phpunit.xml.dist new file mode 100644 index 00000000..6593a2f0 --- /dev/null +++ b/app/phpunit.xml.dist | |||
@@ -0,0 +1,31 @@ | |||
1 | <?xml version="1.0" encoding="UTF-8"?> | ||
2 | |||
3 | <phpunit backupGlobals="false" | ||
4 | backupStaticAttributes="false" | ||
5 | colors="true" | ||
6 | convertErrorsToExceptions="true" | ||
7 | convertNoticesToExceptions="true" | ||
8 | convertWarningsToExceptions="true" | ||
9 | processIsolation="false" | ||
10 | stopOnFailure="false" | ||
11 | syntaxCheck="false" | ||
12 | bootstrap="bootstrap.php.cache" | ||
13 | > | ||
14 | |||
15 | <testsuites> | ||
16 | <testsuite name="wallabag Test Suite"> | ||
17 | <directory>../src/Wallabag/CoreBundle/Tests</directory> | ||
18 | </testsuite> | ||
19 | </testsuites> | ||
20 | |||
21 | <filter> | ||
22 | <whitelist> | ||
23 | <directory>../src</directory> | ||
24 | <exclude> | ||
25 | <directory>../vendor</directory> | ||
26 | <directory>../src/Acme</directory> | ||
27 | <directory>../src/AppBundle</directory> | ||
28 | </exclude> | ||
29 | </whitelist> | ||
30 | </filter> | ||
31 | </phpunit> | ||