2010-12-14 16:26:35 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
2014-05-05 11:39:40 +00:00
|
|
|
<!--
|
|
|
|
|
Colors don't work on Windows!
|
|
|
|
|
phpunit.php enables colors for other OSs at runtime
|
|
|
|
|
-->
|
2010-12-14 16:26:35 +00:00
|
|
|
<phpunit bootstrap="./bootstrap.php"
|
2014-05-05 11:39:40 +00:00
|
|
|
colors="false"
|
2013-05-30 16:06:26 +00:00
|
|
|
backupGlobals="false"
|
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
|
forceCoversAnnotation="true"
|
|
|
|
|
stopOnFailure="false"
|
|
|
|
|
timeoutForSmallTests="10"
|
|
|
|
|
timeoutForMediumTests="30"
|
|
|
|
|
timeoutForLargeTests="60"
|
|
|
|
|
strict="true"
|
|
|
|
|
verbose="true">
|
2010-12-14 16:26:35 +00:00
|
|
|
<testsuites>
|
|
|
|
|
<testsuite name="includes">
|
2011-11-01 15:09:52 +00:00
|
|
|
<directory>includes</directory>
|
2010-12-14 16:26:35 +00:00
|
|
|
</testsuite>
|
|
|
|
|
<testsuite name="languages">
|
2011-11-01 15:09:52 +00:00
|
|
|
<directory>languages</directory>
|
2010-12-14 16:26:35 +00:00
|
|
|
</testsuite>
|
|
|
|
|
<testsuite name="skins">
|
2011-11-01 15:09:52 +00:00
|
|
|
<directory>skins</directory>
|
2010-12-14 16:26:35 +00:00
|
|
|
</testsuite>
|
2012-04-03 10:23:03 +00:00
|
|
|
<!-- As there is a class Maintenance, we cannot use the
|
|
|
|
|
name "maintenance" directly -->
|
|
|
|
|
<testsuite name="maintenance_suite">
|
|
|
|
|
<directory>maintenance</directory>
|
|
|
|
|
</testsuite>
|
2011-11-10 23:45:35 +00:00
|
|
|
<testsuite name="structure">
|
2013-05-21 09:26:02 +00:00
|
|
|
<directory>structure</directory>
|
2011-11-10 23:45:35 +00:00
|
|
|
</testsuite>
|
2010-12-14 16:26:35 +00:00
|
|
|
<testsuite name="uploadfromurl">
|
2011-11-01 15:09:52 +00:00
|
|
|
<file>suites/UploadFromUrlTestSuite.php</file>
|
2010-12-14 16:26:35 +00:00
|
|
|
</testsuite>
|
|
|
|
|
<testsuite name="extensions">
|
2014-12-17 16:15:57 +00:00
|
|
|
<directory>structure</directory>
|
2011-11-01 15:09:52 +00:00
|
|
|
<file>suites/ExtensionsTestSuite.php</file>
|
2013-05-10 19:20:12 +00:00
|
|
|
<file>suites/ExtensionsParserTestSuite.php</file>
|
2014-03-17 13:24:52 +00:00
|
|
|
<file>suites/LessTestSuite.php</file>
|
|
|
|
|
</testsuite>
|
2010-12-14 16:26:35 +00:00
|
|
|
</testsuites>
|
|
|
|
|
<groups>
|
|
|
|
|
<exclude>
|
|
|
|
|
<group>Utility</group>
|
|
|
|
|
<group>Broken</group>
|
2012-01-10 20:50:34 +00:00
|
|
|
<group>ParserFuzz</group>
|
2010-12-14 16:26:35 +00:00
|
|
|
<group>Stub</group>
|
|
|
|
|
</exclude>
|
|
|
|
|
</groups>
|
2013-10-18 19:03:12 +00:00
|
|
|
<filter>
|
|
|
|
|
<whitelist addUncoveredFilesFromWhitelist="true">
|
|
|
|
|
<directory suffix=".php">../../includes</directory>
|
|
|
|
|
<directory suffix=".php">../../languages</directory>
|
|
|
|
|
<directory suffix=".php">../../maintenance</directory>
|
|
|
|
|
<directory suffix=".php">../../resources</directory>
|
|
|
|
|
<directory suffix=".php">../../skins</directory>
|
|
|
|
|
</whitelist>
|
|
|
|
|
</filter>
|
2010-12-14 16:26:35 +00:00
|
|
|
</phpunit>
|