/**
  * Get the Singleton Object
  *
  * @return tx_caretaker_TestResultRepository
  */
 public function getInstance()
 {
     if (!self::$instance) {
         self::$instance = new tx_caretaker_AggregatorResultRepository();
     }
     return self::$instance;
 }