phpmyadmin/phpunit.xml.nocoverage
William Desportes 30990a1d24
Fix EnvironmentTest path in phpunit.xml*
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-03-05 21:28:01 +01:00

26 lines
838 B
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="Unit">
<file>test/classes/EnvironmentTest.php</file>
<directory suffix="Test.php">test/libraries/common</directory>
<directory suffix="Test.php">test/libraries</directory>
</testsuite>
<testsuite name="Selenium">
<directory suffix="Test.php">test/selenium</directory>
</testsuite>
</testsuites>
<logging>
<log type="junit" target="build/logs/junit.xml" />
</logging>
</phpunit>