summaryrefslogtreecommitdiff
path: root/tests/selenium/suites/MediawikiCoreSmokeTestSuite.php
blob: 5d5ef518003c6e470cdb19261ddbdc9bfb673d2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
/*
 * Stubs for now. We're going to start populating this test.
 */
class MediawikiCoreSmokeTestSuite extends SeleniumTestSuite
{
	public function setUp() {
		$this->setLoginBeforeTests( false );
		parent::setUp();
	} 
	public function addTests() {
		$testFiles = array(
			'tests/selenium/suites/MediawikiCoreSmokeTestCase.php'
		);
		parent::addTestFiles( $testFiles );
	}


}