MediaWiki  REL1_21
SimpleSeleniumTestSuite.php
Go to the documentation of this file.
00001 <?php
00012 class SimpleSeleniumTestSuite extends SeleniumTestSuite {
00013         public function setUp() {
00014                 $this->setLoginBeforeTests( false );
00015                 parent::setUp();
00016         }
00017 
00018         public function addTests() {
00019                 $testFiles = array(
00020                         'selenium/suites/SimpleSeleniumTestCase.php'
00021                 );
00022                 parent::addTestFiles( $testFiles );
00023         }
00024 
00025 
00026 }