RxTestでVoidのEventをテストする
RxTestのObserverを使ってVoidイベントの発火をテストするために以下のようなことをするとコンパイルに通りません。
// ViewModel.swift
struct ViewModel {
let somethingOccurred: Signal<Void>
...
}
// ViewModel_Test.swift
let observer = testScheduler.createObserver(Void.self)
vm.somethingOccurred
.emit(to: observer)
.disposed(by: disposeBag)
expect(observer.events).to(equal([.next(100, ())])) // Compile Error!! Expression type Protocol type 'Any' cannot conform to 'Equatable' because only concrete types can conform to protocols
原因
なぜこうなるかというと、VoidがEquatableではないからです。
Voidはなにかというと空のtupleです。
public typealias Void = ()
tupleはEquatableではないのでVoidもそうなります。
対策
expect(observer.events).to(haveCount(1))
expect(observer.events[0].time).to(equal(100))
参考
Author And Source
この問題について(RxTestでVoidのEventをテストする), 我々は、より多くの情報をここで見つけました https://qiita.com/yanamura/items/71d3ccf3113e4b21a8ca著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .