mirror of
https://github.com/crazywhalecc/choir-psr-http.git
synced 2026-03-18 04:34:52 +08:00
34 lines
1010 B
Plaintext
34 lines
1010 B
Plaintext
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
<phpunit bootstrap="./tests/bootstrap.php"
|
||
|
|
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="Test Suite">
|
||
|
|
<directory suffix="Test.php">./tests</directory>
|
||
|
|
</testsuite>
|
||
|
|
</testsuites>
|
||
|
|
<coverage>
|
||
|
|
<include>
|
||
|
|
<directory suffix=".php">./src/Choir</directory>
|
||
|
|
</include>
|
||
|
|
<report>
|
||
|
|
<html outputDirectory="./build/html-coverage"/>
|
||
|
|
<clover outputFile="./build/coverage.xml"/>
|
||
|
|
</report>
|
||
|
|
</coverage>
|
||
|
|
<php>
|
||
|
|
<env name="APP_ENV" value="testing"/>
|
||
|
|
</php>
|
||
|
|
</phpunit>
|