ECTestResult
Abstract
encapsulates the result of a testcase
Methods
- -exception
- -initWithException:
- Using this initializer marks the result as
a failure and stores the underlying exception
- -initWithSuccess
- initializes this instance indicating that the
the operation has been successfully launched.
- -successful
- (NSException *) exception;
- method result
- returns the exception causing the failure of the testcase.
Returns nil if testcase ran successfully
Using this initializer marks the result as
a failure and stores the underlying exception
- initWithException: (NSException *) anException;
Parameter Descriptions
anException
- Exception causing the failure
- method result
- self
initializes this instance indicating that the
the operation has been successfully launched.
- initWithSuccess;
- method result
- self
- (BOOL) successful;
- method result
- YES if operation (testcase) has been successfully run
(Last Updated August 27, 2006)