36 lines
1.1 KiB
XML
36 lines
1.1 KiB
XML
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/7.0/phpunit.xsd"
|
|
backupGlobals="true"
|
|
backupStaticAttributes="false"
|
|
cacheTokens="false"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
forceCoversAnnotation="false"
|
|
mapTestClassNameToCoveredClassName="false"
|
|
processIsolation="false"
|
|
stopOnError="false"
|
|
stopOnFailure="false"
|
|
stopOnIncomplete="false"
|
|
stopOnSkipped="false"
|
|
stopOnRisky="false"
|
|
timeoutForSmallTests="1"
|
|
timeoutForMediumTests="10"
|
|
timeoutForLargeTests="60"
|
|
verbose="false">
|
|
<testsuites>
|
|
<testsuite name="analytics-php">
|
|
<directory>test</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">./lib</directory>
|
|
</whitelist>
|
|
</filter>
|
|
<logging>
|
|
<log type="coverage-clover" target="clover.xml"/>
|
|
</logging>
|
|
</phpunit> |