http リクエストを介してデータをロードする非同期関数の単体テストを作成しました。
テストを開始すると、1 回ではなく 3 回呼び出されます。
ここのような単体テストを実装しようとしました: https://adoptioncurve.net/archives/2015/10/testing-asynchronous-code-in-swift/
私のコードは次のようになります。
func getWatches(completionHandler: @escaping ((result:Bool)) -> ()) {
Some code ...
URLSession.shared.dataTask(with: request, completionHandler: { (data, response, error) -> Void in
Some code ...
DispatchQueue.main.async(){
completionHandler(true)
}
}).resume()
}
func testGetWatches() {
let asyncExpectation = expectation(description: "longRunningFunction")
WatchApiConnector.sharedInstance.getWatches() { (result) -> () in
asyncExpectation.fulfill()
}
self.waitForExpectations(timeout: 5) { error in
XCTAssertEqual(WatchApiConnector.sharedInstance.watches.count,20,"20 expected")
}
}
その結果、次のようになります。
Test Suite 'WatchApiConnectorTests' passed at 2016-12-15 14:32:30.437.
Executed 1 test, with 0 failures (0 unexpected) in 0.305 (0.306) seconds
Test Suite 'ChronextTests.xctest' passed at 2016-12-15 14:32:30.438.
Executed 1 test, with 0 failures (0 unexpected) in 0.305 (0.307) seconds
Test Suite 'Selected tests' passed at 2016-12-15 14:32:30.439.
Executed 1 test, with 0 failures (0 unexpected) in 0.305 (0.309) seconds
それで、私は何か間違ったことをしていますか、それとも iOS での非同期単体テストのデフォルトの動作ですか?