MediaWiki
REL1_21
|
00001 <?php 00024 global $wgAutoloadClasses; 00025 $testDir = __DIR__; 00026 00027 $wgAutoloadClasses += array( 00028 00029 # tests 00030 'DbTestPreviewer' => "$testDir/testHelpers.inc", 00031 'DbTestRecorder' => "$testDir/testHelpers.inc", 00032 'DelayedParserTest' => "$testDir/testHelpers.inc", 00033 'TestFileIterator' => "$testDir/testHelpers.inc", 00034 'TestRecorder' => "$testDir/testHelpers.inc", 00035 00036 # tests/phpunit 00037 'MediaWikiTestCase' => "$testDir/phpunit/MediaWikiTestCase.php", 00038 'MediaWikiPHPUnitCommand' => "$testDir/phpunit/MediaWikiPHPUnitCommand.php", 00039 'MediaWikiLangTestCase' => "$testDir/phpunit/MediaWikiLangTestCase.php", 00040 'MediaWikiProvide' => "$testDir/phpunit/includes/Providers.php", 00041 'TestUser' => "$testDir/phpunit/includes/TestUser.php", 00042 00043 # tests/phpunit/includes 00044 'BlockTest' => "$testDir/phpunit/includes/BlockTest.php", 00045 'RevisionStorageTest' => "$testDir/phpunit/includes/RevisionStorageTest.php", 00046 'WikiPageTest' => "$testDir/phpunit/includes/WikiPageTest.php", 00047 00048 //db 00049 'ORMTableTest' => "$testDir/phpunit/includes/db/ORMTableTest.php", 00050 'PageORMTableForTesting' => "$testDir/phpunit/includes/db/ORMTableTest.php", 00051 00052 //Selenium 00053 'SeleniumTestConstants' => "$testDir/selenium/SeleniumTestConstants.php", 00054 00055 # tests/phpunit/includes/api 00056 'ApiFormatTestBase' => "$testDir/phpunit/includes/api/format/ApiFormatTestBase.php", 00057 'ApiTestCase' => "$testDir/phpunit/includes/api/ApiTestCase.php", 00058 'ApiTestContext' => "$testDir/phpunit/includes/api/ApiTestCase.php", 00059 'MockApi' => "$testDir/phpunit/includes/api/ApiTestCase.php", 00060 'RandomImageGenerator' => "$testDir/phpunit/includes/api/RandomImageGenerator.php", 00061 'UserWrapper' => "$testDir/phpunit/includes/api/ApiTestCase.php", 00062 00063 # tests/phpunit/includes/content 00064 'DummyContentHandlerForTesting' => "$testDir/phpunit/includes/content/ContentHandlerTest.php", 00065 'DummyContentForTesting' => "$testDir/phpunit/includes/content/ContentHandlerTest.php", 00066 'ContentHandlerTest' => "$testDir/phpunit/includes/content/ContentHandlerTest.php", 00067 'JavaScriptContentTest' => "$testDir/phpunit/includes/content/JavaScriptContentTest.php", 00068 'TextContentTest' => "$testDir/phpunit/includes/content/TextContentTest.php", 00069 'WikitextContentTest' => "$testDir/phpunit/includes/content/WikitextContentTest.php", 00070 00071 # tests/phpunit/includes/db 00072 'ORMRowTest' => "$testDir/phpunit/includes/db/ORMRowTest.php", 00073 00074 # tests/phpunit/includes/parser 00075 'NewParserTest' => "$testDir/phpunit/includes/parser/NewParserTest.php", 00076 00077 # tests/phpunit/includes/libs 00078 'GenericArrayObjectTest' => "$testDir/phpunit/includes/libs/GenericArrayObjectTest.php", 00079 00080 # tests/phpunit/includes/site 00081 'SiteTest' => "$testDir/phpunit/includes/site/SiteTest.php", 00082 'TestSites' => "$testDir/phpunit/includes/site/TestSites.php", 00083 00084 # tests/phpunit/languages 00085 'LanguageClassesTestCase' => "$testDir/phpunit/languages/LanguageClassesTestCase.php", 00086 00087 # tests/phpunit/maintenance 00088 'DumpTestCase' => "$testDir/phpunit/maintenance/DumpTestCase.php", 00089 00090 # tests/parser 00091 'ParserTest' => "$testDir/parser/parserTest.inc", 00092 'ParserTestParserHook' => "$testDir/parser/parserTestsParserHook.php", 00093 00094 # tests/selenium 00095 'Selenium' => "$testDir/selenium/Selenium.php", 00096 'SeleniumLoader' => "$testDir/selenium/SeleniumLoader.php", 00097 'SeleniumTestCase' => "$testDir/selenium/SeleniumTestCase.php", 00098 'SeleniumTestConsoleLogger' => "$testDir/selenium/SeleniumTestConsoleLogger.php", 00099 'SeleniumTestConstants' => "$testDir/selenium/SeleniumTestConstants.php", 00100 'SeleniumTestHTMLLogger' => "$testDir/selenium/SeleniumTestHTMLLogger.php", 00101 'SeleniumTestListener' => "$testDir/selenium/SeleniumTestListener.php", 00102 'SeleniumTestSuite' => "$testDir/selenium/SeleniumTestSuite.php", 00103 'SeleniumConfig' => "$testDir/selenium/SeleniumConfig.php", 00104 );