I am trying to get OCUnit to do anything on my project, but I am failing :-( Is there any good tutorial out there to get it work? Everything I find tells something different and they are all pretty complicated ...
What I tried is e.g.
- set up a Unit Testing Target
- add my Target as dependency
- add a xxTest.m to my unit target and write a testcase like:
code:
#import <SenTestingKit/SenTestingKit.h>
@interface XTest : SenTestCase {
}
@end
@implementation XTest
- (void)testAuthentication {
STFail(@"fail");
}
@end
The result is, a build success ... What do I have to do to get unit testing working ?