Package-level declarations

Tools for testing hurok-based applications

DSL for unit testing Action result

Functions for asserting com.ekezet.hurok.Action results:

Example:

@Test
fun `Making a move works correctly`() {
// set up init model and expected model
// ...

initModel after OnMoveMade(position) matches {
assertModel(expectedModel)
assertNoEffects()
}
}

DSL for unit testing Effect

To test an com.ekezet.hurok.Effect inherit from EffectTest and mock the dependency if there's one. Use runWith to test and assert the subject against the mocked dependency.

Functions for asserting effect results:

Example:

class GameBoardEffectTest : EffectTest() {
// ...

@Test
fun `WaitBeforeNextTurn works correctly`() = runTest {
val nextMove: Position = mockk()

dependency runWith WaitBeforeNextTurn(nextMove) matches {
assertActions(listOf(OnMoveMade(nextMove)))
}
}
}

Testing the Renderer

To unit test a com.ekezet.hurok.Renderer prepare a model, instantiate the com.ekezet.hurok.Renderer and call its com.ekezet.hurok.Renderer method to get the expected state. Then you can use assert methods like assertEquals() on the result.

Types

Link copied to clipboard
abstract class EffectTest(testContext: CoroutineContext = UnconfinedTestDispatcher(), testScope: CoroutineScope = TestScope(testContext)) : CoroutineScope

Base class for Effect tests.

Link copied to clipboard

Action emitter used for testing.

Link copied to clipboard

Asserter for action results.

Functions

Link copied to clipboard
infix fun <TModel : Any, TDependency> TModel.after(action: <Error class: unknown class><TModel, TDependency>): <Error class: unknown class><TModel, TDependency>

Apply the action to a model.

Link copied to clipboard
infix fun <TModel : Any, TDependency> <Error class: unknown class><TModel, TDependency>.matches(block: NextAsserter<TModel, TDependency>.(<Error class: unknown class><TModel, TDependency>) -> Unit)

Assert the result of an action.

infix inline fun <TModel : Any, TDependency> EmitAsserter<TModel, TDependency>.matches(crossinline block: EmitAsserter<TModel, TDependency>.() -> Unit)

Assert emitted actions by the Effect.