-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml
35 lines (31 loc) · 1.08 KB
/
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
30
31
32
33
34
35
<?xml version="1.0" encoding="utf-8" ?>
<phpunit bootstrap="./vendor/autoload.php"
forceCoversAnnotation="true"
verbose="false"
strict="true"
timeoutForSmallTests="1"
timeoutForMediumTests="3"
timeoutForLargeTests="8"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTestSize="true"
beStrictAboutChangesToGlobalState="true"
colors="true">
<testsuites>
<testsuite name="Crunchmail PHP Client Test Suite">
<directory>./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
<exclude>
<directory suffix=".php">src/Exception</directory>
</exclude>
</whitelist>
</filter>
<logging>
<!--<log type="coverage-html" target="./build/coverage/"/>-->
<log type="testdox-text" target="./build/agile-doc.txt"/>
</logging>
</phpunit>