Sha256: 3d6d94739445f2e9d9632ae7d17a06273af0e287b36238d392cd75edf1572200
Contents?: true
Size: 669 Bytes
Versions: 18
Compression:
Stored size: 669 Bytes
Contents
#import <Foundation/Foundation.h> extern NSString * const SPTCurrentSpecKey; extern NSString * const SPTCurrentTestCaseKey; #define SPTCurrentSpec [[NSThread currentThread] threadDictionary][SPTCurrentSpecKey] #define SPTCurrentTestCase [[NSThread currentThread] threadDictionary][SPTCurrentTestCaseKey] #define SPTCurrentGroup [SPTCurrentSpec currentGroup] #define SPTGroupStack [SPTCurrentSpec groupStack] #define SPTReturnUnlessBlockOrNil(block) if ((block) && !SPTIsBlock((block))) return; #define SPTIsBlock(obj) [(obj) isKindOfClass:NSClassFromString(@"NSBlock")] const char *SPTGetBlockSignature(id blockObject); BOOL SPTIsSpecClass(Class aClass);
Version data entries
18 entries across 6 versions & 1 rubygems