test
suspend fun <T> Flow<T>.test(validate: suspend FlowTurbine<T>.() -> Unit)
Content copied to clipboard
Terminal flow operator that collects events from given flow and allows the validate lambda to consume and assert properties on them in order. If any exception occurs during validation the exception is rethrown from this method.
flowOf("one", "two").test {
assertEquals("one", expectItem())
assertEquals("two", expectItem())
expectComplete()
}Content copied to clipboard