Come up with testing strategy and implement tests. Dev notes: // prevent multiple button taps private val DEBOUNCE_TIMEOUT: Long = 100 .debounce(DEBOUNCE_TIMEOUT, TimeUnit.MILLISECONDS) .observeOn(AndroidSchedulers.mainThread())
Come up with testing strategy and implement tests.
Dev notes:
// prevent multiple button taps
private val DEBOUNCE_TIMEOUT: Long = 100
.debounce(DEBOUNCE_TIMEOUT, TimeUnit.MILLISECONDS)
.observeOn(AndroidSchedulers.mainThread())