11 lines
304 B
Objective-C
11 lines
304 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@interface NSObject (Expecta)
|
|
|
|
- (void)recordFailureWithDescription:(NSString *)description
|
|
inFile:(NSString *)filename
|
|
atLine:(NSUInteger)lineNumber
|
|
expected:(BOOL)expected;
|
|
|
|
@end
|