1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
|
3
|
<phpunit colors="true" bootstrap="tests/bootstrap.php">
|
4
|
<testsuites>
|
5
|
<testsuite name="SimplePie Test Suite">
|
6
|
<directory>./tests</directory>
|
7
|
</testsuite>
|
8
|
<testsuite name="Old Tests">
|
9
|
<file>tests/oldtests.php</file>
|
10
|
</testsuite>
|
11
|
</testsuites>
|
12
|
|
13
|
<filter>
|
14
|
<blacklist>
|
15
|
<directory suffix=".php">tests</directory>
|
16
|
</blacklist>
|
17
|
<whitelist>
|
18
|
<directory suffix=".php">SimplePie</directory>
|
19
|
</whitelist>
|
20
|
</filter>
|
21
|
</phpunit>
|