]>
Commit | Line | Data |
---|---|---|
1 | <?xml version="1.0" encoding="UTF-8"?> | |
2 | ||
3 | <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
4 | xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.8/phpunit.xsd" | |
5 | backupGlobals="false" | |
6 | colors="true" | |
7 | bootstrap="app/autoload.php" | |
8 | > | |
9 | ||
10 | <testsuites> | |
11 | <testsuite name="wallabag Test Suite"> | |
12 | <directory>tests</directory> | |
13 | </testsuite> | |
14 | </testsuites> | |
15 | ||
16 | <php> | |
17 | <ini name="error_reporting" value="-1" /> | |
18 | <server name="KERNEL_DIR" value="app/" /> | |
19 | <env name="SYMFONY_DEPRECATIONS_HELPER" value="weak" /> | |
20 | </php> | |
21 | ||
22 | <filter> | |
23 | <whitelist> | |
24 | <directory>src</directory> | |
25 | <exclude> | |
26 | <directory>vendor</directory> | |
27 | <directory>src/Wallabag/*Bundle/Resources</directory> | |
28 | <directory>src/Wallabag/*Bundle/Tests</directory> | |
29 | <directory>src/Wallabag/*Bundle/DataFixtures</directory> | |
30 | </exclude> | |
31 | </whitelist> | |
32 | </filter> | |
33 | ||
34 | <listeners> | |
35 | <listener class="\DAMA\DoctrineTestBundle\PHPUnit\PHPUnitStaticDbConnectionListener" /> | |
36 | </listeners> | |
37 | </phpunit> |