/**
  * @param TestCase $testCase
  */
 public function addTestCase(TestCase $testCase)
 {
     $this->testCases[] = $testCase;
     $this->time += $testCase->getTime();
     $this->assertions += $testCase->getAssertions();
     $this->errors += $testCase->getError() ? 1 : 0;
     $this->failures += $testCase->getFailure() ? 1 : 0;
 }