d7237f7240fef54c6c79ff99dc19e452bba7821b
[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 'MediaWikiLangTestCase' => "$testDir/phpunit/MediaWikiLangTestCase.php",
42 'MediaWikiProvide' => "$testDir/phpunit/includes/Providers.php",
43 'TestUser' => "$testDir/phpunit/includes/TestUser.php",
44
45 # tests/phpunit/includes
46 'BlockTest' => "$testDir/phpunit/includes/BlockTest.php",
47 'RevisionStorageTest' => "$testDir/phpunit/includes/RevisionStorageTest.php",
48 'WikiPageTest' => "$testDir/phpunit/includes/WikiPageTest.php",
49
50 //db
51 'ORMTableTest' => "$testDir/phpunit/includes/db/ORMTableTest.php",
52 'PageORMTableForTesting' => "$testDir/phpunit/includes/db/ORMTableTest.php",
53 'DatabaseTestHelper' => "$testDir/phpunit/includes/db/DatabaseTestHelper.php",
54
55 # tests/phpunit/includes/api
56 'ApiFormatTestBase' => "$testDir/phpunit/includes/api/format/ApiFormatTestBase.php",
57 'ApiTestCase' => "$testDir/phpunit/includes/api/ApiTestCase.php",
58 'ApiTestContext' => "$testDir/phpunit/includes/api/ApiTestCase.php",
59 'MockApi' => "$testDir/phpunit/includes/api/ApiTestCase.php",
60 'RandomImageGenerator' => "$testDir/phpunit/includes/api/RandomImageGenerator.php",
61 'UserWrapper' => "$testDir/phpunit/includes/api/ApiTestCase.php",
62
63 # tests/phpunit/includes/content
64 'DummyContentHandlerForTesting' => "$testDir/phpunit/includes/content/ContentHandlerTest.php",
65 'DummyContentForTesting' => "$testDir/phpunit/includes/content/ContentHandlerTest.php",
66 'ContentHandlerTest' => "$testDir/phpunit/includes/content/ContentHandlerTest.php",
67 'JavaScriptContentTest' => "$testDir/phpunit/includes/content/JavaScriptContentTest.php",
68 'TextContentTest' => "$testDir/phpunit/includes/content/TextContentTest.php",
69 'WikitextContentTest' => "$testDir/phpunit/includes/content/WikitextContentTest.php",
70
71 # tests/phpunit/includes/db
72 'ORMRowTest' => "$testDir/phpunit/includes/db/ORMRowTest.php",
73
74 # tests/phpunit/includes/parser
75 'NewParserTest' => "$testDir/phpunit/includes/parser/NewParserTest.php",
76 'MediaWikiParserTest' => "$testDir/phpunit/includes/parser/MediaWikiParserTest.php",
77
78 # tests/phpunit/includes/libs
79 'GenericArrayObjectTest' => "$testDir/phpunit/includes/libs/GenericArrayObjectTest.php",
80
81 # tests/phpunit/includes/site
82 'SiteTest' => "$testDir/phpunit/includes/site/SiteTest.php",
83 'TestSites' => "$testDir/phpunit/includes/site/TestSites.php",
84
85 # tests/phpunit/mocks
86 'MockFSFile' => "$testDir/phpunit/mocks/filebackend/MockFSFile.php",
87 'MockFileBackend' => "$testDir/phpunit/mocks/filebackend/MockFileBackend.php",
88 'MockBitmapHandler' => "$testDir/phpunit/mocks/media/MockBitmapHandler.php",
89 'MockImageHandler' => "$testDir/phpunit/mocks/media/MockBitmapHandler.php",
90 'MockSvgHandler' => "$testDir/phpunit/mocks/media/MockBitmapHandler.php",
91
92 # tests/phpunit/languages
93 'LanguageClassesTestCase' => "$testDir/phpunit/languages/LanguageClassesTestCase.php",
94
95 # tests/phpunit/maintenance
96 'DumpTestCase' => "$testDir/phpunit/maintenance/DumpTestCase.php",
97
98 # tests/parser
99 'ParserTest' => "$testDir/parser/parserTest.inc",
100 'ParserTestParserHook' => "$testDir/parser/parserTestsParserHook.php",
101 );