我正在使用 Quick、Nimble 和 RxSwift。
我的目标是编写单元测试来测试一些带有 Timer 的功能,这些功能将在一段时间后重复执行。
我的伪类
final class TestingTimerClass {
let counter: BehaviorRelay<Int> = BehaviorRelay<Int>(value: 0)
private var timer: Timer?
....
func startTimer() {
timer = Timer.scheduledTimer(
timeInterval: 8,
target: self as Any,
selector: #selector(self.executeFunction),
userInfo: nil,
repeats: true
)
}
@objc private func executeFunction() {
let currentValue = counter.value
counter.accept(currentValue + 1)
}
}
我的测试班
class TestingTimerClass: QuickSpec {
override func spec() {
var testingClass: TestingTimerClass!
describe("executing") {
context("startTimer()") {
beforeEach {
testingClass = TestingTimerClass()
}
afterEach {
testingClass = nil
}
it("should update counter value after a period of time") {
testingClass.startTimer()
expect(testingClass.counter.value).toEventually(equal(1), timeout: TimeInterval(9), pollInterval: TimeInterval(2), description: nil)
}
}
}
}
}
我希望它executeFunction()
会在 8 秒后被调用,但是它永远不会被调用并且我的测试套件失败了。
知道出了什么问题吗?