Merge "Add a LESS test suite"
[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 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 <testsuite name="less">
43 <file>suites/LessTestSuite.php</file>
44 </testsuite>
45 </testsuites>
46 <groups>
47 <exclude>
48 <group>Utility</group>
49 <group>Broken</group>
50 <group>ParserFuzz</group>
51 <group>Stub</group>
52 </exclude>
53 </groups>
54 <filter>
55 <whitelist addUncoveredFilesFromWhitelist="true">
56 <directory suffix=".php">../../includes</directory>
57 <directory suffix=".php">../../languages</directory>
58 <directory suffix=".php">../../maintenance</directory>
59 <directory suffix=".php">../../resources</directory>
60 <directory suffix=".php">../../skins</directory>
61 </whitelist>
62 </filter>
63 </phpunit>