forked from FastFeed/FastFeed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
26 lines (22 loc) · 856 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./tests/bootstrap.php" colors="true">
<testsuites>
<testsuite name="FastFeed test suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<filter>
<blacklist>
<directory>./tests</directory>
<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="FastFeed" charset="UTF-8"
yui="true" highlight="true" lowUpperBound="20" highLowerBound="80"/>
</logging>
</phpunit>