SimpleInvokerDecorator($invoker); } /** * Invokes a test method and dispatches any * untrapped errors. * @param string $method Test method to call. * @access public */ function invoke($method) { try { parent::invoke($method); } catch (Exception $exception) { $test_case = $this->getTestCase(); $test_case->exception($exception); } } } ?>