MediaWiki  REL1_21
MediaWikiEditorTestSuite.php
Go to the documentation of this file.
00001 <?php
00002 
00003 class MediaWikiEditorTestSuite extends SeleniumTestSuite {
00004         public function setUp() {
00005                 $this->setLoginBeforeTests( true );
00006                 parent::setUp();
00007         }
00008 
00009         public function addTests() {
00010                 $testFiles = array(
00011                         'tests/selenium/suites/AddNewPageTestCase.php',
00012                         'tests/selenium/suites/AddContentToNewPageTestCase.php',
00013                         'tests/selenium/suites/PreviewPageTestCase.php',
00014                         'tests/selenium/suites/SavePageTestCase.php',
00015                 );
00016                 parent::addTestFiles( $testFiles );
00017         }
00018 }
00019