- (
void)testAsync {
XCTestExpectation *expactation = [
self expectationWithDescription:@
"异步测试"];
[Person loadPersonAsync:^(Person *person) {
NSLog(@
"%@",person);
[expactation fulfill];
}];
[
self waitForExpectationsWithTimeout:
10 handler:
nil];
}