class FailureHandlerStepImpl<T, R> : SubjectChangerBuilder.FailureHandlerStep<T, R>
FailureHandlerStepImpl(transformationStep: SubjectChangerBuilder.TransformationStep<T>, transformation: (T) -> Option<R>) |
val transformation: (T) -> Option<R>
The previously specified transformation which will yield the new subject. |
|
val transformationStep: SubjectChangerBuilder.TransformationStep<T>
The so far chosen options up to the TransformationStep step. |
fun withDefaultFailureHandler(): SubjectChangerBuilder.FinalStep<T, R>
Uses the default SubjectChanger.FailureHandler which builds the failing assertion based on the specified TransformationStep.description and TransformationStep.representation and includes the assertions a given assertionCreator lambda would create. |
|
fun withFailureHandler(failureHandler: SubjectChanger.FailureHandler<T, R>): SubjectChangerBuilder.FinalStep<T, R>
Uses the given failureHandler as SubjectChanger.FailureHandler to create the failing assertion in case the subject change fails. |
open fun build(): SubjectChangerBuilder.ExecutionStep<T, R>
Skips this step by using withDefaultFailureHandler and calls FinalStep.build. |
|
open fun <R1> withFailureHandlerAdapter(failureHandler: SubjectChanger.FailureHandler<R1, R>, map: (T) -> R1): SubjectChangerBuilder.FinalStep<T, R>
Uses the given failureHandler as SubjectChanger.FailureHandler to create the failing assertion in case the subject change fails but previously maps the subject from T to R1 as the failure handler only deals with R1 subjects. |