/**
  * 
  * @return TestUser
  */
 public static function user()
 {
     if (empty(self::$_instance)) {
         self::$_instance = new TestUser();
     }
     return self::$_instance;
 }