autoloader missed some entries
Jenkins does not run the autoloader test (will be fixed in a different commit). This patch fix the main and test autoloader to add in all the missing entries. bug: 47750 Change-Id: I285fa7ed24a6fc45a4dc475b54d80cf3816436fb
This commit is contained in:
parent
c8b2ad0c98
commit
ea14e46965
2 changed files with 4 additions and 0 deletions
|
|
@ -118,9 +118,11 @@ $wgAutoloadLocalClasses = array(
|
|||
'HTMLFloatField' => 'includes/HTMLForm.php',
|
||||
'HTMLForm' => 'includes/HTMLForm.php',
|
||||
'HTMLFormField' => 'includes/HTMLForm.php',
|
||||
'HTMLFormFieldRequiredOptionsException' => 'includes/HTMLForm.php',
|
||||
'HTMLHiddenField' => 'includes/HTMLForm.php',
|
||||
'HTMLInfoField' => 'includes/HTMLForm.php',
|
||||
'HTMLIntField' => 'includes/HTMLForm.php',
|
||||
'HTMLNestedFilterable' => 'includes/HTMLForm.php',
|
||||
'HTMLMultiSelectField' => 'includes/HTMLForm.php',
|
||||
'HTMLRadioField' => 'includes/HTMLForm.php',
|
||||
'HTMLSelectAndOtherField' => 'includes/HTMLForm.php',
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@ $wgAutoloadClasses += array(
|
|||
'ParserTestResult' => "$testDir/parser/ParserTestResult.php",
|
||||
'TestFileIterator' => "$testDir/testHelpers.inc",
|
||||
'TestRecorder' => "$testDir/testHelpers.inc",
|
||||
'ITestRecorder' => "$testDir/testHelpers.inc",
|
||||
|
||||
# tests/phpunit
|
||||
'MediaWikiTestCase' => "$testDir/phpunit/MediaWikiTestCase.php",
|
||||
|
|
@ -48,6 +49,7 @@ $wgAutoloadClasses += array(
|
|||
|
||||
//db
|
||||
'ORMTableTest' => "$testDir/phpunit/includes/db/ORMTableTest.php",
|
||||
'PageORMTableForTesting' => "$testDir/phpunit/includes/db/ORMTableTest.php",
|
||||
'DatabaseTestHelper' => "$testDir/phpunit/includes/db/DatabaseTestHelper.php",
|
||||
|
||||
# tests/phpunit/includes/api
|
||||
|
|
|
|||
Loading…
Reference in a new issue