public function testFailAndSkippedAndIncomplete()
 {
     $this->r->endTest($this->t, 0);
     $this->r->addFailure($this->t, new PHPUnit_Framework_AssertionFailedError(), 0);
     $this->r->addSkippedTest($this->t, new Exception(), 0);
     $this->r->addIncompleteTest($this->t, new Exception(), 0);
     $this->t('failure', '1 test failed! 1 test was incomplete. 1 test was skipped.');
 }