forked from imbo/imboclient-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
28 lines (25 loc) · 975 Bytes
/
phpunit.xml.dist
File metadata and controls
28 lines (25 loc) · 975 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true"
bootstrap="tests/bootstrap.php">
<testsuites>
<testsuite name="imboclient test suite">
<directory>tests/ImboClient</directory>
</testsuite>
</testsuites>
<php>
<const name="IMBOCLIENT_ENABLE_TESTS" value="false" />
<const name="IMBOCLIENT_TESTS_URL" value="" />
</php>
<logging>
<log type="coverage-html" target="build/coverage" title="Code coverage for imboclient" charset="UTF-8" yui="true" highlight="true" />
<log type="coverage-clover" target="build/logs/clover.xml" />
<log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false" />
<log type="testdox-html" target="build/logs/testdox.html" />
<log type="testdox-text" target="build/logs/testdox.txt" />
</logging>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">library/ImboClient</directory>
</whitelist>
</filter>
</phpunit>