phpmyadmin/phpunit.xml.nocoverage
William Desportes ce85e5ee13
Remove json logging for nocoverage phpunit xml file and remove useless file
Ref: 3b3fbaefdb

Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-03-05 21:18:09 +01:00

26 lines
830 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/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>