-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
29 lines (27 loc) · 917 Bytes
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="bootstrap.php" color="true">
<php>
<ini name="xdebug.max_nesting_level" value="200" />
</php>
<logging>
<log type="coverage-php" target="build/logs/coverage.cov"/>
</logging>
<testsuites>
<testsuite name="MilioooMessaging">
<directory suffix="Test.php">./Messaging/Tests</directory>
</testsuite>
<testsuite name="MilioooMessagingBundle">
<directory suffix="Test.php">./MessagingBundle/Tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory>./vendor</directory>
<directory>./MessagingBundle/Tests</directory>
<directory>./Messaging/Tests</directory>
</exclude>
</whitelist>
</filter>
</phpunit>