magento-plugin/phpunit.xml.dist

32 lines
885 B
Plaintext
Raw Normal View History

<?xml version="1.0"?>
<phpunit
backupGlobals = "false"
backupStaticAttributes = "false"
bootstrap = "tests/bootstrap.php"
colors = "true"
convertErrorsToExceptions = "true"
convertNoticesToExceptions = "true"
convertWarningsToExceptions = "true"
processIsolation = "false"
stopOnFailure = "false"
syntaxCheck = "false"
>
<testsuites>
<testsuite name="bitpay/magento-plugin Test Suite">
<directory>tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>app/</directory>
<directory>lib/</directory>
</whitelist>
</filter>
<logging>
2014-07-03 07:38:44 -07:00
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
</phpunit>