forked from sourcefabric/Newscoop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
19 lines (19 loc) · 851 Bytes
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<phpunit bootstrap="newscoop/tests/bootstrap.php" colors="true" backupGlobals="false">
<testsuites>
<testsuite name="Newscoop">
<directory>newscoop/tests/library</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">newscoop/library/Newscoop</directory>
<directory suffix=".php">newscoop/classes</directory>
<directory suffix=".php">newscoop/template_engine</directory>
<exclude>
<directory suffix=".php">newscoop/library/Newscoop/Controller</directory>
<directory suffix=".php">newscoop/library/Newscoop/Entity/Proxy</directory>
<directory suffix=".php">newscoop/library/Newscoop/Entity/Output</directory>
</exclude>
</whitelist>
</filter>
</phpunit>