phpmyadmin/phpunit.xml.dist
Maurício Meneghini Fauth 10357465de Fix PHPUnit tests
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2020-03-06 22:06:08 -03:00

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>