Localisation updates from http://translatewiki.net.
[mediawiki.git] / tests / phpunit / suite.xml
blob7a9122fa65b1f1f11ec977bce2c8722f67ec5399
1 <?xml version="1.0" encoding="UTF-8"?>
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         forceCoversAnnotation="true"
11         stopOnFailure="false"
12         timeoutForSmallTests="10"
13         timeoutForMediumTests="30"
14         timeoutForLargeTests="60"
15         strict="true"
16         verbose="true">
17         <testsuites>
18                 <testsuite name="includes">
19                         <directory>includes</directory>
20                 </testsuite>
21                 <testsuite name="languages">
22                         <directory>languages</directory>
23                 </testsuite>
24                 <testsuite name="skins">
25                         <directory>skins</directory>
26                 </testsuite>
27                 <!-- As there is a class Maintenance, we cannot use the
28                      name "maintenance" directly -->
29                 <testsuite name="maintenance_suite">
30                         <directory>maintenance</directory>
31                 </testsuite>
32                 <testsuite name="structure">
33                         <directory>structure</directory>
34                 </testsuite>
35                 <testsuite name="uploadfromurl">
36                         <file>suites/UploadFromUrlTestSuite.php</file>
37                 </testsuite>
38                 <testsuite name="extensions">
39                         <file>suites/ExtensionsTestSuite.php</file>
40                         <file>suites/ExtensionsParserTestSuite.php</file>
41                 </testsuite>
42         </testsuites>
43         <groups>
44                 <exclude>
45                         <group>Utility</group>
46                         <group>Broken</group>
47                         <group>ParserFuzz</group>
48                         <group>Stub</group>
49                 </exclude>
50         </groups>
51 </phpunit>