summaryrefslogtreecommitdiff
path: root/tests/selenium/suites/PageDeleteTestSuite.php
blob: e43ffa80fe9c832ab736c169dc9f86d5733a1aea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

class PageDeleteTestSuite extends SeleniumTestSuite {
	public function setUp() {
		$this->setLoginBeforeTests( true );
		parent::setUp();
	}

	public function addTests() {
		$testFiles = array(
			'tests/selenium/suites/DeletePageAdminTestCase.php'
		);
		parent::addTestFiles( $testFiles );
	}
}