Translated using Weblate (German)
[phpmyadmin.git] / phpunit.xml.nocoverage
blobd1ae39d3c90342fe8f753b90e82accee97ffa2fe
1 <?xml version="1.0" encoding="UTF-8"?>
2 <phpunit bootstrap="test/bootstrap-dist.php"
3 backupGlobals="true"
4 backupStaticAttributes="false"
5 strict="true"
6 timeoutForSmallTests="3"
7 colors="true"
8 verbose="true">
10 <selenium>
11 <browser name="Firefox on localhost"
12 browser="*firefox"
13 host="127.0.0.1"
14 port="4444"
15 timeout="30000"/>
16 </selenium>
18 <testsuites>
19 <testsuite name="Classes">
20 <directory suffix="Test.php">test/classes</directory>
21 </testsuite>
22 <testsuite name="Unit">
23 <file>test/EnvironmentTest.php</file>
24 <directory suffix="Test.php">test/libraries/common</directory>
25 <directory suffix="Test.php">test/libraries</directory>
26 </testsuite>
27 <testsuite name="Selenium">
28 <directory suffix="Test.php">test/selenium</directory>
29 </testsuite>
30 </testsuites>
32 <logging>
33 <log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/>
34 <log type="json" target="build/logs/phpunit.json" />
35 </logging>
36 </phpunit>