follow-up to r65715: convert spaces to tabs for indentation, as per our coding standa...
[lhc/web/wiklou.git] / maintenance / tests / selenium / SeleniumTestSuite.php
index b7456f1..112db74 100644 (file)
@@ -11,30 +11,30 @@ define('MW_TESTLOGGER_RESULT_ERROR', 3);
 
 class SeleniumTestSuite extends PHPUnit_Framework_TestSuite
 {
-    private $selenium;
-
-    public function setUp()
-    {
-
-        $this->selenium = Selenium::getInstance();
-        $this->selenium->start();
-        $this->login();
-        //$this->loadPage('Testpage', 'edit');
-    }
-
-    public function tearDown()
-    {
-        $this->selenium->stop();
-    }
-
-    public function login()
-    {
-        $this->selenium->login();
-    }
-
-    public function loadPage($title, $action)
-    {
-        $this->selenium->loadPage($title, $action);
-    }
+       private $selenium;
+
+       public function setUp()
+       {
+
+               $this->selenium = Selenium::getInstance();
+               $this->selenium->start();
+               $this->login();
+               //$this->loadPage('Testpage', 'edit');
+       }
+
+       public function tearDown()
+       {
+               $this->selenium->stop();
+       }
+
+       public function login()
+       {
+               $this->selenium->login();
+       }
+
+       public function loadPage($title, $action)
+       {
+               $this->selenium->loadPage($title, $action);
+       }
 }