summaryrefslogtreecommitdiff
path: root/tests/selenium/suites/MediawikiCoreSmokeTestSuite.php
blob: a9a9b4d664d80b621f24d749d4c66a67db32495e (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 );
	}


}