28 lines
976 B
XML
28 lines
976 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/5.4/phpunit.xsd"
|
|
bootstrap="vendor/autoload.php"
|
|
backupGlobals="false"
|
|
beStrictAboutCoversAnnotation="true"
|
|
beStrictAboutOutputDuringTests="true"
|
|
beStrictAboutTestsThatDoNotTestAnything="true"
|
|
beStrictAboutTodoAnnotatedTests="true"
|
|
stopOnFailure="false"
|
|
syntaxCheck="false"
|
|
verbose="true"
|
|
colors="true">
|
|
<testsuite name="Drupal mock variables, variable_* tests">
|
|
<directory suffix="Test.php">./tests</directory>
|
|
</testsuite>
|
|
|
|
<logging>
|
|
<log type="coverage-clover" target="build/logs/clover.xml" />
|
|
</logging>
|
|
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">./src</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|