diff options
author | Kimtrip <jeremy.benoist@gmail.com> | 2015-01-30 15:47:27 +0100 |
---|---|---|
committer | Kimtrip <jeremy.benoist@gmail.com> | 2015-01-30 15:47:27 +0100 |
commit | 4ffc77d9f574fd91e9ac811754c2aa42a06e582f (patch) | |
tree | cb18be7c4986359cbd1db6540d0708427bdcab5e /app/phpunit.xml.dist | |
parent | fdcbdda1ade822e038727ff1b653b9702ba75d6a (diff) | |
download | wallabag-4ffc77d9f574fd91e9ac811754c2aa42a06e582f.tar.gz wallabag-4ffc77d9f574fd91e9ac811754c2aa42a06e582f.tar.zst wallabag-4ffc77d9f574fd91e9ac811754c2aa42a06e582f.zip |
Move phpunit into app folder
Diffstat (limited to 'app/phpunit.xml.dist')
-rw-r--r-- | app/phpunit.xml.dist | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app/phpunit.xml.dist b/app/phpunit.xml.dist new file mode 100644 index 00000000..0be14ca9 --- /dev/null +++ b/app/phpunit.xml.dist | |||
@@ -0,0 +1,26 @@ | |||
1 | <?xml version="1.0" encoding="UTF-8"?> | ||
2 | |||
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 | > | ||
10 | <testsuites> | ||
11 | <testsuite name="wallabag Test Suite"> | ||
12 | <directory>../src/Wallabag/CoreBundle/Tests</directory> | ||
13 | </testsuite> | ||
14 | </testsuites> | ||
15 | |||
16 | <filter> | ||
17 | <whitelist> | ||
18 | <directory>../src</directory> | ||
19 | <exclude> | ||
20 | <directory>../vendor</directory> | ||
21 | <directory>../src/Acme</directory> | ||
22 | <directory>../src/AppBundle</directory> | ||
23 | </exclude> | ||
24 | </whitelist> | ||
25 | </filter> | ||
26 | </phpunit> | ||