I created a new Cocoa Touch Static Library project with Unit Testing in XCode 4 and added a category:
// NSString+Inflections.h
@interface NSString (Inflections)
- (NSString *)pluralize;
@end
// NSString+Inflections.m
@implementation NSString (Inflections)
- (NSString *)pluralize { return self; }
@end
then added the appropriate import statement to my test cases and wrote the following test:
- (void)testPluralize
{
NSString *test = @"person";
NSString *expected = @"people";
NSString *actual = [test pluralize];
STAssertEqualObjects(actual, expected, @"Whoops");
}
However, this causes my tests to crash (not fail) with 'unrecognized selector sent to instance'.
How can I test a category inside a library?
I've compressed and uploaded the full project here if my description is inadequate.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…