NSDate_Utils/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.h
2015-12-22 13:58:16 +01:00

11 lines
328 B
Objective-C

#import "Expecta.h"
EXPMatcherInterface(_beIdenticalTo, (void *expected));
EXPMatcherInterface(beIdenticalTo, (void *expected)); // to aid code completion
#if __has_feature(objc_arc)
#define beIdenticalTo(expected) _beIdenticalTo((__bridge void*)expected)
#else
#define beIdenticalTo(expected) _beIdenticalTo(expected)
#endif