phpmyadmin/phpunit.xml.nocoverage
Maurício Meneghini Fauth 450d0cd42f Remove selenium element from phpunit.xml.*
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
2018-11-03 21:17:21 -03:00

29 lines
976 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="test/bootstrap-dist.php"
backupGlobals="true"
backupStaticAttributes="false"
strict="true"
timeoutForSmallTests="3"
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" logIncompleteSkipped="false"/>
<log type="json" target="build/logs/phpunit.json" />
</logging>
</phpunit>