Merge branch 'master' into Wikidata
[lhc/web/wiklou.git] / tests / phpunit / suite.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <!-- colors don't work on Windows! -->
4 <phpunit bootstrap="./bootstrap.php"
5 colors="true"
6 backupGlobals="false"
7 convertErrorsToExceptions="true"
8 convertNoticesToExceptions="true"
9 convertWarningsToExceptions="true"
10 stopOnFailure="false"
11 strict="true"
12 verbose="true">
13 <testsuites>
14 <testsuite name="includes">
15 <directory>includes</directory>
16 </testsuite>
17 <testsuite name="languages">
18 <directory>languages</directory>
19 </testsuite>
20 <testsuite name="skins">
21 <directory>skins</directory>
22 </testsuite>
23 <!-- As there is a class Maintenance, we cannot use the
24 name "maintenance" directly -->
25 <testsuite name="maintenance_suite">
26 <directory>maintenance</directory>
27 </testsuite>
28 <testsuite name="structure">
29 <file>StructureTest.php</file>
30 </testsuite>
31 <testsuite name="uploadfromurl">
32 <file>suites/UploadFromUrlTestSuite.php</file>
33 </testsuite>
34 <testsuite name="extensions">
35 <file>suites/ExtensionsTestSuite.php</file>
36 </testsuite>
37 </testsuites>
38 <groups>
39 <exclude>
40 <group>Utility</group>
41 <group>Broken</group>
42 <group>ParserFuzz</group>
43 <group>Stub</group>
44 </exclude>
45 </groups>
46 </phpunit>