TestAction
Action used in library tests.
Properties
Functions
Link copied to clipboard
fun <TModel : Any, TDependency> Action<TModel, TDependency>.mutate(model: TModel? = null): Action.Next<TModel, TDependency>
Shorthand for returning an action result with optional model changes only.
Link copied to clipboard
fun <TModel : Any, TDependency> Action<TModel, TDependency>.outcome(model: TModel? = null, vararg effects: Effect<TModel, TDependency>): Action.Next<TModel, TDependency>
Shorthand for returning an action result with both changes to the model and triggered effects.
Link copied to clipboard
Execute this Action.
Link copied to clipboard
fun <TModel : Any, TDependency> Action<TModel, TDependency>.trigger(vararg effects: Effect<TModel, TDependency>): Action.Next<TModel, TDependency>
Shorthand for returning an action result with triggered effects only.