TestLoop

class TestLoop(model: TestModel, renderer: Renderer<TestModel, TestState>, args: TestArgs? = null, firstAction: TestAction? = null, dependency: TestDependency? = null, effectContext: CoroutineContext = DispatcherProvider.IO) : Loop<TestState, TestModel, TestArgs, TestDependency, TestAction>

Loop used in library tests.

Constructors

Link copied to clipboard
constructor(model: TestModel, renderer: Renderer<TestModel, TestState>, args: TestArgs? = null, firstAction: TestAction? = null, dependency: TestDependency? = null, effectContext: CoroutineContext = DispatcherProvider.IO)

Properties

Link copied to clipboard

The first state of this Loop in a blocking fashion. Useful for testing.

Link copied to clipboard
open override val scope: CoroutineScope

Scope used for emission.

Link copied to clipboard
val state: Flow<TestState>

Functions

Link copied to clipboard

Add a child emitter on the dependency.

Link copied to clipboard
fun applyArgs(args: TestArgs)
Link copied to clipboard
override fun emit(action: Action<TestModel, TestDependency>)

Emit an action for the Loop using the given scope.

Link copied to clipboard

Start the loop in the given scope.