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