mirror of
https://github.com/ascribe/wp-theme
synced 2024-12-22 09:13:38 +01:00
22 lines
507 B
XML
22 lines
507 B
XML
<phpunit
|
|
bootstrap="bootstrap.php.dist"
|
|
backupGlobals="false"
|
|
processIsolation="false"
|
|
colors="false">
|
|
<testsuites>
|
|
<testsuite name="Default">
|
|
<directory suffix="Tests.php">./tests/phpunit</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">./includes</directory>
|
|
</whitelist>
|
|
</filter>
|
|
<php>
|
|
<ini name="error_reporting" value="32767" />
|
|
<ini name="display_errors" value="1" />
|
|
<ini name="display_startup_errors" value="1" />
|
|
</php>
|
|
</phpunit>
|