/* Copyright 2015 Realm Inc - All Rights Reserved * Proprietary and Confidential */ #import #import "RealmJSTests.h" @implementation RealmJSTests + (NSArray *)testSuitesFromDictionary:(NSDictionary *)testCaseNames { NSMutableArray *testSuites = [[NSMutableArray alloc] init]; for (NSString *suiteName in testCaseNames) { XCTestSuite *testSuite = [[XCTestSuite alloc] initWithName:suiteName]; Class testClass = objc_allocateClassPair(self, suiteName.UTF8String, 0); for (NSString *testName in testCaseNames[suiteName]) { XCTestCase *testCase = [[testClass alloc] initWithTestName:testName]; [testSuite addTest:testCase]; } [testSuites addObject:testSuite]; } return [testSuites copy]; } - (instancetype)initWithTestName:(NSString *)name { return [super initWithSelector:NSSelectorFromString(name)]; } - (void)setUp { [super setUp]; [self invokeMethod:@"beforeEach"]; } - (void)tearDown { [self invokeMethod:@"afterEach"]; [super tearDown]; } - (void)invokeTest { @autoreleasepool { [super invokeTest]; } } - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { NSMethodSignature *sig = [super methodSignatureForSelector:aSelector]; return sig ?: [NSMethodSignature signatureWithObjCTypes:"v@:"]; } - (void)forwardInvocation:(NSInvocation *)anInvocation { [self invokeMethod:NSStringFromSelector(anInvocation.selector)]; } - (void)invokeMethod:(NSString *)method { [self doesNotRecognizeSelector:_cmd]; } @end