29 lines
848 B
XML
29 lines
848 B
XML
|
<phpunit
|
||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
|
||
|
backupGlobals="true"
|
||
|
backupStaticAttributes="false"
|
||
|
bootstrap="./bootstrap.php"
|
||
|
cacheTokens="false"
|
||
|
colors="true"
|
||
|
convertErrorsToExceptions="true"
|
||
|
convertNoticesToExceptions="true"
|
||
|
convertWarningsToExceptions="true"
|
||
|
forceCoversAnnotation="false"
|
||
|
processIsolation="false"
|
||
|
stopOnError="false"
|
||
|
stopOnFailure="false"
|
||
|
stopOnIncomplete="false"
|
||
|
stopOnSkipped="false"
|
||
|
stopOnRisky="false"
|
||
|
timeoutForSmallTests="1"
|
||
|
timeoutForMediumTests="10"
|
||
|
timeoutForLargeTests="60"
|
||
|
verbose="true">
|
||
|
<testsuites>
|
||
|
<testsuite name="AllTests">
|
||
|
<directory suffix=".php">.</directory>
|
||
|
</testsuite>
|
||
|
</testsuites>
|
||
|
</phpunit>
|