Nocilla によってスタブ化された、ネットワーク呼び出しを行う非同期的に応答するメソッドを持つクラスをテストしようとしています。
テストを単独で実行すると、テストは正常に実行されます。しかし、テストスイート全体を起動するとすぐに、ここでしばらくブロックされ、次のように終了します。
Thread 1: signal SIGABRT
ここに私のテストクラスがあります:
@interface SMIMyServiceTests : XCTestCase
@property (strong, nonatomic) SMIMyService *service;
@end
@implementation SMIMyServiceTests
+ (void)setUp {
[[LSNocilla sharedInstance] start];
}
+ (void)tearDown {
[[LSNocilla sharedInstance] stop];
}
- (void)setUp {
[super setUp];
self.service = [[SMIMyService alloc] init];
}
- (void)tearDown {
[[LSNocilla sharedInstance] clearStubs];
self.service = nil;
[super tearDown];
}
- (void)testFetch {
stubRequest(@"GET", @"http://mydevserver.192.168.1.15.xip.io/api/data.json").andReturn(200).withBody([MyUtil jsonFromFile:@"json-file" sender:self]);
XCTestExpectation *expectation = [self expectationWithDescription:@"Fetch"];
[self.service fetch:^(NSArray *data) {
XCTAssertTrue(data != nil);
XCTAssertEqual(data.count, 7);
[expectation fulfill];
}];
[self waitForExpectationsWithTimeout:5.0 handler:nil];
}
@end
何がうまくいかないのですか?