20 lines
543 B
XML
20 lines
543 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<phpunit bootstrap="tests/bootstrap.php"
|
|
backupGlobals="false"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true">
|
|
<testsuites>
|
|
<testsuite name="WP Liveticker 2 TestSuite">
|
|
<directory prefix="test-" suffix=".php">./tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">includes</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|