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