Commit | Line | Data |
---|---|---|
929ca066 BA |
1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | ||
3 | <!-- http://phpunit.de/manual/current/en/appendixes.configuration.html --> | |
4 | <phpunit | |
5 | backupGlobals = "false" | |
6 | backupStaticAttributes = "false" | |
7 | colors = "true" | |
8 | convertErrorsToExceptions = "true" | |
9 | convertNoticesToExceptions = "true" | |
10 | convertWarningsToExceptions = "true" | |
11 | processIsolation = "false" | |
12 | stopOnFailure = "false" | |
13 | syntaxCheck = "false" | |
14 | bootstrap = "bootstrap.php.cache" > | |
15 | ||
16 | <testsuites> | |
17 | <testsuite name="Project Test Suite"> | |
18 | <directory>../src/*/*Bundle/Tests</directory> | |
19 | <directory>../src/*/Bundle/*Bundle/Tests</directory> | |
20 | </testsuite> | |
21 | </testsuites> | |
22 | ||
23 | <!-- | |
24 | <php> | |
25 | <server name="KERNEL_DIR" value="/path/to/your/app/" /> | |
26 | </php> | |
27 | --> | |
28 | ||
29 | <filter> | |
30 | <whitelist> | |
31 | <directory>../src</directory> | |
32 | <exclude> | |
33 | <directory>../src/*/*Bundle/Resources</directory> | |
34 | <directory>../src/*/*Bundle/Tests</directory> | |
35 | <directory>../src/*/Bundle/*Bundle/Resources</directory> | |
36 | <directory>../src/*/Bundle/*Bundle/Tests</directory> | |
37 | </exclude> | |
38 | </whitelist> | |
39 | </filter> | |
40 | ||
41 | </phpunit> |