blob: 5cd0a34969c54988f2b5cd1a611afc930d1e930d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
class MediaWikiExtraTestSuite extends SeleniumTestSuite {
public function setUp() {
$this->setLoginBeforeTests( true );
parent::setUp();
}
public function addTests() {
$testFiles = array(
'tests/selenium/suites/MyContributionsTestCase.php',
'tests/selenium/suites/MyWatchListTestCase.php',
'tests/selenium/suites/UserPreferencesTestCase.php',
'tests/selenium/suites/MovePageTestCase.php',
'tests/selenium/suites/PageSearchTestCase.php',
'tests/selenium/suites/EmailPasswordTestCase.php',
'tests/selenium/suites/CreateAccountTestCase.php'
);
parent::addTestFiles( $testFiles );
}
}
|