XCTest使用异步测试需要用到XCTestExpectation
这个类,
- 首先在测试方法中创建一个
XCTestExpectation
对象expectation
。
XCTestExpectation* exception = [self expectationWithDescription:@"xx"];
- 然后执行自定义的异步方法。在这里测试使用
dispatch_async
执行异步操作,真实的测试环境可能是执行一个异步的网络请求,在异步任务执行完成之后需要调用XCTestExpectation
对象expectation
的fullfill
方法,网络请求中需要再网络请求完成之后调用该方法。
dispatch_queue_t queue = dispatch_queue_create("group.queue", DISPATCH_QUEUE_SERIAL);
dispatch_block_t block = dispatch_block_create(0, ^{
[NSThread sleepForTimeInterval:1.0f];
printf("=====block invoke=====\n");
[expectation fulfill];
});
dispatch_async(queue, block);
- 调用
waitForExpectationsWithTimeout:handler
方法传递一个时间参数和超时处理的block。
[self waitForExpectationsWithTimeout:3 handler:^(NSError * _Nullable error) {
}];
完整的代码
- (void)testAsync {
XCTestExpectation* expectation = [self expectationWithDescription:@"xx"];
dispatch_queue_t queue = dispatch_queue_create("group.queue", DISPATCH_QUEUE_SERIAL);
dispatch_block_t block = dispatch_block_create(0, ^{
[NSThread sleepForTimeInterval:1.0f];
printf("=====block invoke=====\n");
[expectation fulfill];
});
dispatch_async(queue, block);
[self waitForExpectationsWithTimeout:3 handler:^(NSError * _Nullable error) {
}];
}
网友评论