phpunit.xml.dist 523 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<?xml version="1.0" encoding="UTF-8"?>

<phpunit colors="true" bootstrap="tests/bootstrap.php">
    <testsuites>
        <testsuite name="SimplePie Test Suite">
            <directory>./tests</directory>
        </testsuite>
        <testsuite name="Old Tests">
			<file>tests/oldtests.php</file>
        </testsuite>
    </testsuites>

	<filter>
		<blacklist>
			<directory suffix=".php">tests</directory>
		</blacklist>
		<whitelist>
			<directory suffix=".php">SimplePie</directory>
		</whitelist>
	</filter>
</phpunit>