addTest |
Adds a testcase to the set
See Also:
- addTestcase:withSelector:
- addTestcase: (ECTestcase *) testcaseToAdd withSelector: (SEL) methodToCall;
testCaseToAdd
- testcase to add
withSelector
- underlying method to call
addTestcase:withSelector: |
Adds a testcase to the set
See Also:
- addTest
- addTestcase: (ECTestcase *) testcaseToAdd withSelector: (SEL) methodToCall;
testCaseToAdd
- testcase to add
withSelector
- underlying method to call
proceedOnFailure: |
By default the underlying flag equals NO so that assertion failures
will throw an
- proceedOnFailure: (BOOL) doIt;
doIt
- if YES then the
will NOT be thrown in case of an assertion failure. The result (failure) will be marked in and returned by the result array and the test run will proceed.
runTestcases |
Starts the tests
- (NSArray *) runTestcases;
For each testcase being added this method initiates the following methods in their given order:
(Last Updated November 08, 2007)