mirror of
https://github.com/wiosna-dev/common-library.git
synced 2026-03-12 01:31:45 +01:00
55 lines
1.5 KiB
XML
55 lines
1.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/4.8/phpunit.xsd"
|
|
backupGlobals="true"
|
|
backupStaticAttributes="false"
|
|
bootstrap="./vendor/autoload.php"
|
|
cacheTokens="false"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
forceCoversAnnotation="false"
|
|
mapTestClassNameToCoveredClassName="false"
|
|
printerClass="PHPUnit_TextUI_ResultPrinter"
|
|
processIsolation="false"
|
|
stopOnError="false"
|
|
stopOnFailure="false"
|
|
stopOnIncomplete="false"
|
|
stopOnSkipped="false"
|
|
stopOnRisky="false"
|
|
testSuiteLoaderClass="PHPUnit_Runner_StandardTestSuiteLoader"
|
|
timeoutForSmallTests="1"
|
|
timeoutForMediumTests="10"
|
|
timeoutForLargeTests="60"
|
|
verbose="true"
|
|
>
|
|
<php>
|
|
<ini name="error_reporting" value="-1"/>
|
|
</php>
|
|
|
|
<testsuites>
|
|
<testsuite name="Meritoo Package - Main Test Suite">
|
|
<directory>./tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory>./src/</directory>
|
|
</whitelist>
|
|
</filter>
|
|
|
|
<groups>
|
|
<exclude>
|
|
<group>performance</group>
|
|
</exclude>
|
|
</groups>
|
|
|
|
<logging>
|
|
<log type="coverage-html" target="./.build/logs/phpunit_coverage/html"/>
|
|
</logging>
|
|
</phpunit>
|