Mercurial > hg > dml-open-vis
comparison app/phpunit.xml.dist @ 0:493bcb69166c
added public content
author | Daniel Wolff |
---|---|
date | Tue, 09 Feb 2016 20:54:02 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:493bcb69166c |
---|---|
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="Project Test Suite"> | |
12 <directory>../src/*/*Bundle/Tests</directory> | |
13 <directory>../src/*/Bundle/*Bundle/Tests</directory> | |
14 </testsuite> | |
15 </testsuites> | |
16 | |
17 <!-- | |
18 <php> | |
19 <server name="KERNEL_DIR" value="/path/to/your/app/" /> | |
20 </php> | |
21 --> | |
22 | |
23 <filter> | |
24 <whitelist> | |
25 <directory>../src</directory> | |
26 <exclude> | |
27 <directory>../src/*/*Bundle/Resources</directory> | |
28 <directory>../src/*/*Bundle/Tests</directory> | |
29 <directory>../src/*/Bundle/*Bundle/Resources</directory> | |
30 <directory>../src/*/Bundle/*Bundle/Tests</directory> | |
31 </exclude> | |
32 </whitelist> | |
33 </filter> | |
34 </phpunit> |