fenom/phpunit.xml.dist

43 lines
1.1 KiB
Plaintext
Raw Normal View History

2013-01-25 18:36:16 +04:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="tests/autoload.php"
>
<php>
<ini name="memory_limit" value="-1"/>
<ini name="display_errors" value="1"/>
<ini name="error_reporting" value="-1"/>
</php>
<testsuites>
<testsuite >
<directory>./tests/</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>benchmark</group>
</exclude>
</groups>
<filter>
<whitelist>
<directory>./src/</directory>
</whitelist>
2014-07-29 13:22:46 +04:00
<blacklist>
<directory>./tests/</directory>
</blacklist>
2013-01-25 18:36:16 +04:00
</filter>
2013-09-12 19:59:20 +04:00
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
2013-01-25 18:36:16 +04:00
</phpunit>