4efd8b344deca653e178153bfdb7a06312e867e7
[lhc/web/wiklou.git] / maintenance / tests / selenium / SimpleSeleniumTestSuite.php
1 <?php
2
3 require_once(dirname( __FILE__ ) . '/SimpleSeleniumTestCase.php');
4
5 class SimpleSeleniumTestSuite extends SeleniumTestSuite
6 {
7 public function __construct( $name = 'Basic selenium test suite') {
8 parent::__construct( $name );
9 }
10
11 public function addTests() {
12 $test = new SimpleSeleniumTestCase();
13 parent::addTest( $test );
14 }
15 }