mirror of
https://github.com/Aviortheking/DeltaCMS.git
synced 2025-04-22 10:52:11 +00:00
40 lines
1.0 KiB
XML
40 lines
1.0 KiB
XML
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/|version|/phpunit.xsd"
|
|
backupGlobals="true"
|
|
backupStaticAttributes="false"
|
|
bootstrap="vendor/autoload.php"
|
|
cacheResult="false"
|
|
cacheTokens="false"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
forceCoversAnnotation="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="false">
|
|
<filter>
|
|
<whitelist>
|
|
<directory>src/DeltaCMS</directory>
|
|
</whitelist>
|
|
</filter>
|
|
<testsuites>
|
|
<testsuite name="Tests">
|
|
<directory>tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<logging>
|
|
<log type="coverage-clover" target="tmp/code-coverage.xml" />
|
|
</logging>
|
|
</phpunit>
|