summaryrefslogtreecommitdiff
path: root/tests/phpunit/suite.xml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/phpunit/suite.xml')
-rw-r--r--tests/phpunit/suite.xml50
1 files changed, 50 insertions, 0 deletions
diff --git a/tests/phpunit/suite.xml b/tests/phpunit/suite.xml
new file mode 100644
index 00000000..8f7e977f
--- /dev/null
+++ b/tests/phpunit/suite.xml
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- colors don't work on Windows! -->
+<phpunit bootstrap="./bootstrap.php"
+ colors="true"
+ backupGlobals="false"
+ convertErrorsToExceptions="true"
+ convertNoticesToExceptions="true"
+ convertWarningsToExceptions="true"
+ stopOnFailure="false"
+ timeoutForSmallTests="10"
+ timeoutForMediumTests="30"
+ timeoutForLargeTests="60"
+ strict="true"
+ verbose="true">
+ <testsuites>
+ <testsuite name="includes">
+ <directory>includes</directory>
+ </testsuite>
+ <testsuite name="languages">
+ <directory>languages</directory>
+ </testsuite>
+ <testsuite name="skins">
+ <directory>skins</directory>
+ </testsuite>
+ <!-- As there is a class Maintenance, we cannot use the
+ name "maintenance" directly -->
+ <testsuite name="maintenance_suite">
+ <directory>maintenance</directory>
+ </testsuite>
+ <testsuite name="structure">
+ <file>AutoLoaderTest.php</file>
+ <file>StructureTest.php</file>
+ </testsuite>
+ <testsuite name="uploadfromurl">
+ <file>suites/UploadFromUrlTestSuite.php</file>
+ </testsuite>
+ <testsuite name="extensions">
+ <file>suites/ExtensionsTestSuite.php</file>
+ </testsuite>
+ </testsuites>
+ <groups>
+ <exclude>
+ <group>Utility</group>
+ <group>Broken</group>
+ <group>ParserFuzz</group>
+ <group>Stub</group>
+ </exclude>
+ </groups>
+</phpunit>