iflrandevu/phpunit.xml

32 lines
992 B
XML
Raw Normal View History

2016-11-09 21:55:56 +03:00
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2018-11-03 18:29:03 +03:00
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/|version|/phpunit.xsd"
2016-11-09 21:55:56 +03:00
backupGlobals="true"
backupStaticAttributes="false"
2018-11-03 17:20:51 +03:00
bootstrap="tests/phpunit/bootstrap.php"
2018-11-03 18:29:03 +03:00
cacheResult="false"
2016-11-09 21:55:56 +03:00
cacheTokens="false"
colors="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
2018-11-03 18:29:03 +03:00
printerClass="PHPUnit\TextUI\ResultPrinter"
2016-11-09 21:55:56 +03:00
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
stopOnRisky="false"
2018-11-03 18:29:03 +03:00
testSuiteLoaderClass="PHPUnit\Runner\StandardTestSuiteLoader"
2016-11-09 21:55:56 +03:00
timeoutForSmallTests="1"
timeoutForMediumTests="10"
timeoutForLargeTests="60"
verbose="false">
<filter>
<whitelist>
<directory suffix=".php">src/engine</directory>
2016-11-09 21:55:56 +03:00
</whitelist>
</filter>
</phpunit>