2022-03-28 16:34:26 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<phpunit backupGlobals="false"
|
|
|
|
|
backupStaticAttributes="false"
|
|
|
|
|
colors="true"
|
|
|
|
|
convertDeprecationsToExceptions="true"
|
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
|
processIsolation="false"
|
|
|
|
|
stopOnError="false"
|
|
|
|
|
stopOnFailure="false"
|
|
|
|
|
>
|
|
|
|
|
<testsuites>
|
|
|
|
|
<testsuite name="Zhamao Framework Test Suite">
|
|
|
|
|
<directory suffix="Test.php">./tests</directory>
|
|
|
|
|
</testsuite>
|
|
|
|
|
</testsuites>
|
2022-03-28 16:45:32 +08:00
|
|
|
<coverage processUncoveredFiles="true">
|
|
|
|
|
<include>
|
|
|
|
|
<directory suffix=".php">./src/ZM</directory>
|
|
|
|
|
</include>
|
|
|
|
|
</coverage>
|
2022-03-28 16:34:26 +08:00
|
|
|
<php>
|
|
|
|
|
<env name="APP_ENV" value="testing"/>
|
|
|
|
|
</php>
|
|
|
|
|
</phpunit>
|