Merge "Reorder SpecialRecentChanges::webOutput"
[lhc/web/wiklou.git] / tests / TestsAutoLoader.php
1 <?php
2 /**
3 * AutoLoader for the testing suite.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup Testing
22 */
23
24 global $wgAutoloadClasses;
25 $testDir = __DIR__;
26
27 $wgAutoloadClasses += array(
28
29 # tests
30 'DbTestPreviewer' => "$testDir/testHelpers.inc",
31 'DbTestRecorder' => "$testDir/testHelpers.inc",
32 'DelayedParserTest' => "$testDir/testHelpers.inc",
33 'ParserTestResult' => "$testDir/parser/ParserTestResult.php",
34 'TestFileIterator' => "$testDir/testHelpers.inc",
35 'TestRecorder' => "$testDir/testHelpers.inc",
36 'ITestRecorder' => "$testDir/testHelpers.inc",
37
38 # tests/phpunit
39 'MediaWikiTestCase' => "$testDir/phpunit/MediaWikiTestCase.php",
40 'MediaWikiPHPUnitCommand' => "$testDir/phpunit/MediaWikiPHPUnitCommand.php",
41 'MediaWikiPHPUnitTestListener' => "$testDir/phpunit/MediaWikiPHPUnitTestListener.php",
42 'MediaWikiLangTestCase' => "$testDir/phpunit/MediaWikiLangTestCase.php",
43 'MediaWikiProvide' => "$testDir/phpunit/includes/Providers.php",
44 'TestUser' => "$testDir/phpunit/includes/TestUser.php",
45
46 # tests/phpunit/includes
47 'BlockTest' => "$testDir/phpunit/includes/BlockTest.php",
48 'RevisionStorageTest' => "$testDir/phpunit/includes/RevisionStorageTest.php",
49 'WikiPageTest' => "$testDir/phpunit/includes/WikiPageTest.php",
50
51 //db
52 'ORMTableTest' => "$testDir/phpunit/includes/db/ORMTableTest.php",
53 'PageORMTableForTesting' => "$testDir/phpunit/includes/db/ORMTableTest.php",
54 'DatabaseTestHelper' => "$testDir/phpunit/includes/db/DatabaseTestHelper.php",
55
56 # tests/phpunit/includes/api
57 'ApiFormatTestBase' => "$testDir/phpunit/includes/api/format/ApiFormatTestBase.php",
58 'ApiTestCase' => "$testDir/phpunit/includes/api/ApiTestCase.php",
59 'ApiTestContext' => "$testDir/phpunit/includes/api/ApiTestCase.php",
60 'MockApi' => "$testDir/phpunit/includes/api/ApiTestCase.php",
61 'RandomImageGenerator' => "$testDir/phpunit/includes/api/RandomImageGenerator.php",
62 'UserWrapper' => "$testDir/phpunit/includes/api/ApiTestCase.php",
63
64 # tests/phpunit/includes/content
65 'DummyContentHandlerForTesting' => "$testDir/phpunit/includes/content/ContentHandlerTest.php",
66 'DummyContentForTesting' => "$testDir/phpunit/includes/content/ContentHandlerTest.php",
67 'ContentHandlerTest' => "$testDir/phpunit/includes/content/ContentHandlerTest.php",
68 'JavaScriptContentTest' => "$testDir/phpunit/includes/content/JavaScriptContentTest.php",
69 'TextContentTest' => "$testDir/phpunit/includes/content/TextContentTest.php",
70 'WikitextContentTest' => "$testDir/phpunit/includes/content/WikitextContentTest.php",
71
72 # tests/phpunit/includes/db
73 'ORMRowTest' => "$testDir/phpunit/includes/db/ORMRowTest.php",
74
75 # tests/phpunit/includes/parser
76 'NewParserTest' => "$testDir/phpunit/includes/parser/NewParserTest.php",
77 'MediaWikiParserTest' => "$testDir/phpunit/includes/parser/MediaWikiParserTest.php",
78
79 # tests/phpunit/includes/libs
80 'GenericArrayObjectTest' => "$testDir/phpunit/includes/libs/GenericArrayObjectTest.php",
81
82 # tests/phpunit/includes/site
83 'SiteTest' => "$testDir/phpunit/includes/site/SiteTest.php",
84 'TestSites' => "$testDir/phpunit/includes/site/TestSites.php",
85
86 # tests/phpunit/mocks
87 'MockFSFile' => "$testDir/phpunit/mocks/filebackend/MockFSFile.php",
88 'MockFileBackend' => "$testDir/phpunit/mocks/filebackend/MockFileBackend.php",
89 'MockBitmapHandler' => "$testDir/phpunit/mocks/media/MockBitmapHandler.php",
90 'MockImageHandler' => "$testDir/phpunit/mocks/media/MockBitmapHandler.php",
91 'MockSvgHandler' => "$testDir/phpunit/mocks/media/MockBitmapHandler.php",
92
93 # tests/phpunit/languages
94 'LanguageClassesTestCase' => "$testDir/phpunit/languages/LanguageClassesTestCase.php",
95
96 # tests/phpunit/maintenance
97 'DumpTestCase' => "$testDir/phpunit/maintenance/DumpTestCase.php",
98
99 # tests/parser
100 'ParserTest' => "$testDir/parser/parserTest.inc",
101 'ParserTestParserHook' => "$testDir/parser/parserTestsParserHook.php",
102 );