-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
43 lines (43 loc) · 1.25 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
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
backupGlobals="true"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
processIsolation="false"
stopOnError="false"
stopOnFailure="true"
stopOnIncomplete="false"
stopOnSkipped="false"
timeoutForSmallTests="1"
timeoutForMediumTests="10"
timeoutForLargeTests="60"
bootstrap="tests/bootstrap.php"
cacheResult="false"
verbose="true">
<coverage includeUncoveredFiles="true"
pathCoverage="false"
ignoreDeprecatedCodeUnits="true"
disableCodeCoverageIgnore="true">
<include>
<directory>src</directory>
</include>
<exclude>
<directory>tests</directory>
</exclude>
<report>
<html outputDirectory="build/html" lowUpperBound="50" highLowerBound="90"/>
</report>
</coverage>
<php>
<env name="MONGO_DATABASE" value="MondocTests_" force="true"/>
</php>
<testsuites>
<testsuite name="MondocTestSuite">
<directory>tests/</directory>
</testsuite>
</testsuites>
</phpunit>