49 lines
1.5 KiB
XML
49 lines
1.5 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<phpunit backupGlobals="true"
|
|
backupStaticAttributes="false"
|
|
bootstrap="tests/bootstrap.php"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="false"
|
|
convertWarningsToExceptions="false"
|
|
processIsolation="false"
|
|
stopOnError="false"
|
|
stopOnFailure="false"
|
|
stopOnIncomplete="false"
|
|
stopOnSkipped="false"
|
|
syntaxCheck="true"
|
|
reportUselessTests="true"
|
|
strictCoverage="true"
|
|
disallowTestOutput="true"
|
|
beStrictAboutTestSize="true"
|
|
verbose="true">
|
|
<php>
|
|
<ini name="date.timezone" value="Asia/Tokyo" />
|
|
</php>
|
|
<testsuites>
|
|
<testsuite name="Fluent\\Logger Test Suite">
|
|
<directory>tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<logging>
|
|
<log type="coverage-html" target="builds/coverage" title="fluent-logger-php"
|
|
charset="UTF-8" yui="true" highlight="true"
|
|
lowUpperBound="35" highLowerBound="70"/>
|
|
<log type="coverage-clover" target="builds/logs/clover.xml"/>
|
|
<log type="junit" target="builds/logs/junit.xml" logIncompleteSkipped="false"/>
|
|
</logging>
|
|
|
|
<filter>
|
|
<whitelist addUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">src</directory>
|
|
<exclude>
|
|
<directory>examples</directory>
|
|
<directory>tests</directory>
|
|
<directory>cookbooks</directory>
|
|
<directory>builds</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|