mirror of https://gitee.com/zorlan/skycaiji
44 lines
1.4 KiB
XML
44 lines
1.4 KiB
XML
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/3.7/phpunit.xsd"
|
|
backupGlobals="true"
|
|
backupStaticAttributes="false"
|
|
bootstrap="vendor/autoload.php"
|
|
cacheTokens="false"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
forceCoversAnnotation="false"
|
|
mapTestClassNameToCoveredClassName="false"
|
|
processIsolation="false"
|
|
stopOnError="true"
|
|
stopOnFailure="true"
|
|
stopOnIncomplete="false"
|
|
stopOnSkipped="false"
|
|
strict="true"
|
|
verbose="true">
|
|
<testsuites>
|
|
<testsuite name="Unit tests">
|
|
<directory suffix=".php">tests/unit</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<logging>
|
|
<log type="coverage-html" target="build/coverage"
|
|
title="Unit coverage" charset="UTF-8" yui="true"
|
|
highlight="true" lowUpperBound="80" highLowerBound="95"/>
|
|
<log type="coverage-clover" target="build/logs/clover.xml"/>
|
|
</logging>
|
|
<filter>
|
|
<blacklist>
|
|
<file>lib/Server.php</file>
|
|
</blacklist>
|
|
<whitelist addUncoveredFilesFromWhitelist="true">
|
|
<exclude>
|
|
<file>lib/Server.php</file>
|
|
</exclude>
|
|
<directory suffix=".php">lib/</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|