wiki.techinc.nl/tests/phpunit/suite.xml
Christian Aistleitner 8ba98560af PHPUnit preparations for tests of maintenance
Change-Id: Id1ac2f8b940e5417e0facaacb7d5ec30b48a9efb
2012-04-03 12:57:10 +02:00

46 lines
1.2 KiB
XML

<?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"
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>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>