/**
  * the singleton pattern
  *
  * @return Setup_TestServer
  */
 public static function getInstance()
 {
     if (self::$instance === NULL) {
         self::$instance = new Setup_TestServer();
     }
     return self::$instance;
 }