wiki.techinc.nl/tests/phpunit/suite.xml
X! edbf743aeb Make MediaWikiParserTest work now in PHPUnit. There are still a few bugs, such as stopping tests if one fails,
lack of fuzz testing and other parser test options, and the DB creation is still a little flaky.
A MediaWikiPHPUnitCommand class had to be created to allow for custom CLI parameters.
2010-12-29 02:23:51 +00:00

36 lines
933 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<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>
<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>Stub</group>
</exclude>
</groups>
</phpunit>