To add delays in my tests I implemented this:
func execute(after: TimeInterval, testBlock: () -> Void) {
let result = XCTWaiter.wait(for: [expectation(description: "Delayed Test")], timeout: after)
if result == XCTWaiter.Result.timedOut {
testBlock()
} else {
XCTFail("Delay interrupted.")
}
}
然后我写了一个测试:
func testExecute() {
var i = 1
DispatchQueue.main.asyncAfter(deadline: .now() + 0.40) {
i = 2
}
execute(after: 0.20) {
XCTAssert(i == 1)
}
execute(after: 0.15) {
XCTAssert(i == 1) // Fails once every three or four runs.
}
execute(after: 0.06) { // Never fails.
XCTAssert(i == 2)
}
}
为什么第二次XCTAssert()
会定期失败?
这是我的模拟器上唯一运行的东西。你会期待一些抖动,但不应该保持1 / 60s的系统时钟周期的1或2倍?
答案 0 :(得分:1)
事实证明,延迟可能需要相当长的时间(在2011年的实验中最多可达200毫秒:http://atastypixel.com/blog/experiments-with-precise-timing-in-ios/)。
使用此execute(after:testBlock:)
函数时必须占用足够的边距。