2010-12-14 16:26:35 +00:00
|
|
|
<?php
|
2011-10-11 18:30:50 +00:00
|
|
|
/**
|
2010-12-14 16:26:35 +00:00
|
|
|
* 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(
|
2010-12-14 16:33:06 +00:00
|
|
|
'tests/selenium/suites/MediawikiCoreSmokeTestCase.php'
|
2010-12-14 16:26:35 +00:00
|
|
|
);
|
|
|
|
|
parent::addTestFiles( $testFiles );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|