mirror of
https://github.com/yiisoft/app.git
synced 2026-03-03 06:44:04 +01:00
30 lines
733 B
XML
30 lines
733 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit bootstrap="autoload.php"
|
|
colors="true"
|
|
verbose="true"
|
|
failOnRisky="true"
|
|
failOnWarning="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
stopOnFailure="false"
|
|
executionOrder="random"
|
|
resolveDependencies="true">
|
|
<php>
|
|
<ini name="error_reporting" value="-1"/>
|
|
</php>
|
|
|
|
<testsuites>
|
|
<testsuite name="Tests">
|
|
<directory>./tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<coverage>
|
|
<include>
|
|
<directory>./src</directory>
|
|
</include>
|
|
</coverage>
|
|
</phpunit>
|