Per wikitech-l discussion: Move tests from maintenance/tests/ to tests/. They're...
[lhc/web/wiklou.git] / tests / selenium / suites / PageDeleteTestSuite.php
1 <?php
2
3 class PageDeleteTestSuite extends SeleniumTestSuite {
4 public function setUp() {
5 $this->setLoginBeforeTests( true );
6 parent::setUp();
7 }
8 public function addTests() {
9 $testFiles = array(
10 'maintenance/tests/selenium/suites/DeletePageAdminTestCase.php'
11 );
12 parent::addTestFiles( $testFiles );
13 }
14
15
16 }