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

exception


- (NSException *) exception;
method result
returns the exception causing the failure of the testcase. Returns nil if testcase ran successfully

initWithException:


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

initWithSuccess


initializes this instance indicating that the the operation has been successfully launched.

- initWithSuccess;
method result
self

successful


- (BOOL) successful;
method result
YES if operation (testcase) has been successfully run

(Last Updated August 27, 2006)