-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
42 lines (39 loc) · 1.43 KB
/
phpunit.xml
File metadata and controls
42 lines (39 loc) · 1.43 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<!-- Generated by PHP Project Wizard (PPW) 1.0.4 on Mon Jun 6 10:54:25 CDT 2011 -->
<phpunit backupGlobals="false"
backupStaticAttributes="false"
strict="false"
colors="true"
bootstrap="test/bootstrap.php"
verbose="true">
<testsuites>
<testsuite name="HUGnetLib">
<directory suffix="Test.php">test/suite</directory>
</testsuite>
<testsuite name="Integration">
<directory suffix="Test.php">test/integration</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-html" target="build/coverage" title="HUGnetLib"
charset="UTF-8" yui="true" highlight="true"
lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
<log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/>
</logging>
<filter>
<blacklist>
<directory suffix=".php">build</directory>
<directory suffix=".php">test</directory>
</blacklist>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src/php</directory>
<exclude>
<directory suffix=".php">src/php/contrib</directory>
<directory suffix=".php">src/php/interfaces</directory>
<directory suffix=".php">src/php/webapi</directory>
<file>src/hugnet.inc.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>