tests > PHPUnit configuration > update

This commit is contained in:
Meritoo
2018-03-30 21:15:42 +02:00
parent ad64d2e02a
commit b7d0b61094

View File

@@ -1,16 +1,35 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false" <phpunit
backupStaticAttributes="false" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/4.8/phpunit.xsd"
convertErrorsToExceptions="true" backupGlobals="true"
convertNoticesToExceptions="true" backupStaticAttributes="false"
convertWarningsToExceptions="true" bootstrap="./vendor/autoload.php"
processIsolation="false" cacheTokens="false"
stopOnFailure="false" colors="true"
syntaxCheck="true" convertErrorsToExceptions="true"
bootstrap="./vendor/autoload.php" 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> <testsuites>
<testsuite name="Meritoo Package - Main Test Suite"> <testsuite name="Meritoo Package - Main Test Suite">
<directory>./tests/</directory> <directory>./tests/</directory>
@@ -30,6 +49,6 @@
</groups> </groups>
<logging> <logging>
<log type="coverage-html" target="./.build/logs/phpunit_coverage/html" /> <log type="coverage-html" target="./.build/logs/phpunit_coverage/html"/>
</logging> </logging>
</phpunit> </phpunit>