I have a ViewModel which has as an input in its initializer
init(sliderEvents: Reactive<UISlider>) {
In the test i want to do something like
slider.send(.touchDownInside)
slider.send(.valueChanged, 5)
slider.send(.valueChanged, 15)
To simulate for the VM that the slider was dragged from value 5 to 15 for example
It is unclear to me how RAC has built up the Base: UISlider so i'm confused as to how to make the subclass of UISlider to make this kind of mocking possible