Package-level declarations
Types
Base expect
type for TestEventSink. This layer of indirection is necessary because Kotlin/JS does not allow extension of function types. To work around it, we make this interface extend (UiEvent) -> Unit
on all platforms except JS, and then expose an asEventSinkFunction()
extension function on TestEventSink in JS that returns a function wrapper around it.
A Circuit-specific extension to ReceiveTurbine with extra helper functions for Circuit testing.
A fake Navigator that can be used in tests to record and assert navigation events.
A test event sink that records events from a Circuit UI and allows making assertions about them.
Functions
A helper function for creating a function wrapper around this TestEventSink for use in tests as an event sink function. We have to do this workaround in JS due to Kotlin/JS not allowing function type extension directly.
A helper function for creating a function wrapper around this TestEventSink for use in tests as an event sink function. We have to do this workaround in JS due to Kotlin/JS not allowing function type extension directly.
Presents this presentFunction and invokes a suspend
CircuitReceiveTurbine that can be used to assert state emissions from it.
Presents this Presenter and invokes a suspend
ReceiveTurbine that can be used to assert state emissions from this presenter.