SuspendingTestContainerHost

class SuspendingTestContainerHost<STATE : Any, SIDE_EFFECT : Any, CONTAINER_HOST : ContainerHost<STATE, SIDE_EFFECT>>(actual: CONTAINER_HOST, initialState: STATE, isolateFlow: Boolean) : TestContainerHost<STATE, SIDE_EFFECT, CONTAINER_HOST>

Functions

assert
Link copied to clipboard
common
fun assert(initialState: STATE, timeoutMillis: Long = 1000L, block: OrbitVerification<STATE, SIDE_EFFECT>.() -> Unit = {})
Perform assertions on your ContainerHost.
equals
Link copied to clipboard
common
open operator fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
common
open fun hashCode(): Int
runOnCreate
Link copied to clipboard
common
suspend fun runOnCreate(): SuspendingTestContainerHost<STATE, SIDE_EFFECT, CONTAINER_HOST>
Invoke onCreate property for the ContainerHost backed by LazyCreateContainerDecorator, e.g.
testIntent
Link copied to clipboard
common
suspend fun testIntent(action: CONTAINER_HOST.() -> Unit): SuspendingTestContainerHost<STATE, SIDE_EFFECT, CONTAINER_HOST>
Invoke an intent on the ContainerHost under test as a suspending function.
toString
Link copied to clipboard
common
open fun toString(): String

Properties

sideEffectObserver
Link copied to clipboard
common
val sideEffectObserver: TestFlowObserver<SIDE_EFFECT>
stateObserver
Link copied to clipboard
common
val stateObserver: TestFlowObserver<STATE>

Sources

(source)
Link copied to clipboard