38 lines
1.2 KiB
XML
38 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit bootstrap="test/bootstrap-dist.php"
|
|
backupGlobals="true"
|
|
backupStaticAttributes="false"
|
|
colors="true"
|
|
verbose="true">
|
|
|
|
<testsuites>
|
|
<testsuite name="Classes">
|
|
<directory suffix="Test.php">test/classes</directory>
|
|
</testsuite>
|
|
<testsuite name="Selenium">
|
|
<directory suffix="Test.php">test/selenium</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<logging>
|
|
<log type="coverage-clover" target="build/logs/clover.xml" />
|
|
<log type="junit" target="build/logs/junit.xml" />
|
|
</logging>
|
|
|
|
<filter>
|
|
<whitelist addUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">.</directory>
|
|
<exclude>
|
|
<!-- composer packages -->
|
|
<directory>vendor/</directory>
|
|
<!-- excluding the tests from the coverage -->
|
|
<directory>test/</directory>
|
|
<!-- excluding the twig cache from the coverage -->
|
|
<directory>tmp/</directory>
|
|
<!-- examples for users -->
|
|
<directory suffix=".php">examples</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|