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
val <TState : ViewState<TModel, TDependency>, TModel : Any, TArgs, TDependency, TAction : Action<TModel, TDependency>> Loop<TState, TModel, TArgs, TDependency, TAction>.firstState: TState
The first state of this Loop in a blocking fashion. Useful for testing.
Functions
Link copied to clipboard
override fun <TChildModel : Any, TChildDependency> addChildEmitter(child: ActionEmitter<TChildModel, TChildDependency>)
Add a child emitter on the dependency.
Link copied to clipboard
fun startIn(scope: CoroutineScope): Loop<TestState, TestModel, TestArgs, TestDependency, TestAction>
Start the loop in the given scope.