-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
38 lines (36 loc) · 1.14 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false" preserveGlobalState="false"
backupStaticAttributes="false"
bootstrap="./phpunit.php"
colors="true"
processIsolation="false"
syntaxCheck="false">
<filter>
<!-- DO NOT SET TO "true" CODE COVERAGE WILL BREAK -->
<whitelist addUncoveredFilesFromWhitelist="false">
<directory suffix=".php">.</directory>
<exclude>
<directory suffix=".php">./tests/</directory>
<directory suffix=".php">./vendor/</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html"
target="./report/html"
title="Code Coverage"
charset="UTF-8"
yui="true"
highlight="true"
lowUpperBound="35" highLowerBound="70"/>
</logging>
<testsuites>
<testsuite name="SocialStreamCombine/tests">
<directory suffix=".php">./tests/</directory>
</testsuite>
</testsuites>
<listeners>
</listeners>
<logging>
</logging>
</phpunit>