MediaWiki  REL1_19
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     public function addTests() {
00009         $testFiles = array(
00010                 'tests/selenium/suites/AddNewPageTestCase.php',
00011                 'tests/selenium/suites/AddContentToNewPageTestCase.php',
00012                 'tests/selenium/suites/PreviewPageTestCase.php',
00013                 'tests/selenium/suites/SavePageTestCase.php',
00014         );
00015         parent::addTestFiles( $testFiles );
00016     }
00017 }
00018