test = $test; } public function toString() { return $this->test->toString(); } public function basicRun(PHPUnit2_Framework_TestResult $result) { $this->test->run($result); } public function countTestCases() { return $this->test->countTestCases(); } protected function createResult() { return new PHPUnit2_Framework_TestResult; } public function getTest() { return $this->test; } public function run(PHPUnit2_Framework_TestResult $result) { $this->basicRun($result); return $result; } } ?>