-
Notifications
You must be signed in to change notification settings - Fork 17
/
phpunit.xml
28 lines (24 loc) · 899 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./tests/bootstrap.php" colors="true">
<testsuites>
<testsuite name="RSSClient test suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./Test</directory>
</whitelist>
<blacklist>
<directory>/usr/share/pear/</directory>
<directory>./build</directory>
<directory>./cache</directory>
<directory>./vendor</directory>
</blacklist>
</filter>
<logging>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
<log type="coverage-html" target="build/coverage" title="RSS Client" charset="UTF-8"
yui="true" highlight="true" lowUpperBound="20" highLowerBound="80"/>
</logging>
</phpunit>