-
Notifications
You must be signed in to change notification settings - Fork 2
/
phpunit.xml.dist
24 lines (23 loc) · 1.06 KB
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true" bootstrap="vendor/autoload.php">
<testsuites>
<testsuite name="Call Center Test Suite">
<directory suffix="Test.php">./src/*/Bundle/*Bundle/Tests</directory>
<directory suffix="Test.php">./src/*/Component/*/Tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./src/CallCenter/</directory>
<exclude>
<directory>./src/CallCenter/Bundle/*Bundle/DataFixtures</directory>
<directory>./src/CallCenter/Bundle/*Bundle/Resources</directory>
<directory>./src/CallCenter/Bundle/*Bundle/Tests</directory>
<directory>./src/CallCenter/Bundle/*/vendor</directory>
<directory>./src/CallCenter/Component/*/Resources</directory>
<directory>./src/CallCenter/Component/*/Tests</directory>
<directory>./src/CallCenter/Component/*/vendor</directory>
</exclude>
</whitelist>
</filter>
</phpunit>