mirror of
https://github.com/zhamao-robot/zhamao-logger.git
synced 2026-03-18 04:54:52 +08:00
33 lines
985 B
Plaintext
33 lines
985 B
Plaintext
|
|
<?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"
|
||
|
|
testdox="true"
|
||
|
|
verbose="true"
|
||
|
|
>
|
||
|
|
<testsuites>
|
||
|
|
<testsuite name="Zhamao Logger Test Suite">
|
||
|
|
<directory suffix="Test.php">./tests</directory>
|
||
|
|
</testsuite>
|
||
|
|
</testsuites>
|
||
|
|
<coverage>
|
||
|
|
<include>
|
||
|
|
<directory suffix=".php">./src/ZM/Logger</directory>
|
||
|
|
</include>
|
||
|
|
<report>
|
||
|
|
<html outputDirectory="./build/html-coverage"/>
|
||
|
|
<clover outputFile="./build/coverage.xml"/>
|
||
|
|
</report>
|
||
|
|
</coverage>
|
||
|
|
<php>
|
||
|
|
<env name="APP_ENV" value="testing"/>
|
||
|
|
</php>
|
||
|
|
</phpunit>
|