Slide 5
Slide 5 text
Sample for Asynchronous Testing
- (void)testDocumentOpening
{
XCTestExpectation *expect =
[self expectationWithDescription:@“open”];
!
UIDocument *doc = ...;
!
[doc openWithCompletionHandler:^(BOOL success) {
XCTAssert(success);
[expect fulfill];
}
!
[self waitForExpectationsWithTimeout:5.0
handler:nil];
}