]> git.immae.eu Git - github/wallabag/wallabag.git/blob - app/phpunit.xml.dist
Merge pull request #1035 from j0k3r/refactor
[github/wallabag/wallabag.git] / app / phpunit.xml.dist
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>