123456789101112131415161718192021222324252627282930313233343536373839 |
-
-
- #import <Foundation/Foundation.h>
- #import "OCMFunctions.h"
-
-
- @interface OCMLocation : NSObject
- {
- id testCase;
- NSString *file;
- NSUInteger line;
- }
-
- + (instancetype)locationWithTestCase:(id)aTestCase file:(NSString *)aFile line:(NSUInteger)aLine;
-
- - (instancetype)initWithTestCase:(id)aTestCase file:(NSString *)aFile line:(NSUInteger)aLine;
-
- - (id)testCase;
- - (NSString *)file;
- - (NSUInteger)line;
-
- @end
-
- OCMOCK_EXTERN OCMLocation *OCMMakeLocation(id testCase, const char *file, int line);
|