-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpunit.xml
More file actions
34 lines (33 loc) · 759 Bytes
/
phpunit.xml
File metadata and controls
34 lines (33 loc) · 759 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.2/phpunit.xsd"
colors="true"
bootstrap="./test/bootstrap.php"
>
<testsuites>
<testsuite>
<directory>./test</directory>
</testsuite>
</testsuites>
<logging>
<log
type="coverage-html"
target="./test/log"
showUncoveredFiles="true"
lowUpperBound="50"
highLowerBound="80"
highlight="true"
yui="true"
/>
</logging>
<filter>
<whitelist>
<directory suffix=".module">.</directory>
<directory suffix=".php">.</directory>
<exclude>
<directory>./test</directory>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
</phpunit>