testRender
fun <PropsT, OutputT, RenderingT> Workflow<PropsT, OutputT, RenderingT>.testRender(props: PropsT): RenderTester<PropsT, *, OutputT, RenderingT>(source)
Create a RenderTester to unit test an individual render pass of this workflow, using the workflow's initial state.
See RenderTester for usage documentation.
fun <PropsT, OutputT, RenderingT> SessionWorkflow<PropsT, *, OutputT, RenderingT>.testRender(props: PropsT, workflowScope: CoroutineScope): RenderTester<PropsT, *, OutputT, RenderingT>(source)
Create a RenderTester to unit test an individual render pass of this SessionWorkflow, using the workflow's initial state, in the workflowScope.
See RenderTester for usage documentation.
fun <PropsT, StateT, OutputT, RenderingT> StatefulWorkflow<PropsT, StateT, OutputT, RenderingT>.testRender(props: PropsT, initialState: StateT): RenderTester<PropsT, StateT, OutputT, RenderingT>(source)
Create a RenderTester to unit test an individual render pass of this workflow.
See RenderTester for usage documentation.