This repository has been archived on 2024-04-06. You can view files and clone it, but cannot push or open issues or pull requests.
2016-08-05 20:14:59 -07:00
|
|
|
<?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"
|
2016-08-08 07:22:38 -07:00
|
|
|
stopOnFailure="false"
|
|
|
|
syntaxCheck="false"
|
2016-08-05 20:14:59 -07:00
|
|
|
verbose="true"
|
|
|
|
colors="true">
|
2016-08-08 07:22:38 -07:00
|
|
|
<testsuite name="Drupal mock variables, variable_* tests">
|
|
|
|
<directory suffix="Test.php">./tests</directory>
|
2016-08-05 20:14:59 -07:00
|
|
|
</testsuite>
|
|
|
|
|
2016-08-08 07:22:38 -07:00
|
|
|
<logging>
|
|
|
|
<log type="coverage-clover" target="build/logs/clover.xml" />
|
|
|
|
</logging>
|
|
|
|
|
2016-08-05 20:14:59 -07:00
|
|
|
<filter>
|
|
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
2016-08-08 07:22:38 -07:00
|
|
|
<directory suffix=".php">./src</directory>
|
2016-08-05 20:14:59 -07:00
|
|
|
</whitelist>
|
|
|
|
</filter>
|
|
|
|
</phpunit>
|