Test file deleted from Calcey
[lhc/web/wiklou.git] / maintenance / tests / selenium / suites / MediaWikiEditorTestSuite.php
1 <?php
2 /*
3 * Sample test suite.
4 * Two ways to configure MW for these tests
5 * 1) If you are running multiple test suites, add the following in LocalSettings.php
6 * require_once("maintenance/tests/selenium/SimpleSeleniumConfig.php");
7 * $wgSeleniumTestConfigs['SimpleSeleniumTestSuite'] = 'SimpleSeleniumConfig::getSettings';
8 * OR
9 * 2) Add the following to your Localsettings.php
10 * $wgDefaultSkin = 'chick';
11 */
12 class MediaWikiEditorTestSuite extends SeleniumTestSuite
13 {
14 public function setUp() {
15 $this->setLoginBeforeTests( True );
16 parent::setUp();
17 }
18 public function addTests() {
19 $testFiles = array(
20 'maintenance/tests/selenium/suites/AddNewPageTestCase.php',
21 'maintenance/tests/selenium/suites/AddContentToNewPageTestCase.php',
22 'maintenance/tests/selenium/suites/DeletePageAdminTestCase.php',
23 'maintenance/tests/selenium/suites/PageSearchTestCase.php'
24
25 );
26 parent::addTestFiles( $testFiles );
27 }
28
29
30 }