interface ExecutionStep<T, R> : TransformationExecutionStep<T, R, FeatureExpect<T, R>>
Step which allows to decide how the transformation shall be executed.
For instance, if it shall just perform the feature extraction and return the new Expect of type R or if it shall pass an assertionCreator-lambda which creates sub-assertions etc.
abstract fun collect(assertionCreator: Expect<R>.() -> Unit): Assertion
Finishes the transformation process by collecting the assertions the given assertionCreator creates for the subject of type R resulting from the transformation and returns the assertions as a single Assertion. |
|
abstract fun collectAndAppend(assertionCreator: Expect<R>.() -> Unit): Expect<T>
Finishes the transformation process by appending the Assertion which is returned when calling collect with the given assertionCreator. |
|
abstract fun transform(): E
Finishes the transformation process by simply performing the transformation as such. |
|
abstract fun transformAndAppend(assertionCreator: Expect<R>.() -> Unit): Expect<R>
Finishes the transformation process by carrying the transformation out and appending the assertions the given assertionCreator creates for the subject of type R resulting from the transformation as single assertion. |
operator fun <T, R> invoke(container: AssertionContainer<T>, action: (AssertionContainer<T>) -> FeatureExpect<T, R>, actionAndApply: (AssertionContainer<T>, Expect<R>.() -> Unit) -> Expect<R>): FeatureExtractorBuilder.ExecutionStep<T, R>
Creates the FinalStep in the context of the SubjectChangerBuilder. |
class ExecutionStepImpl<T, R> : FeatureExtractorBuilder.ExecutionStep<T, R>, BaseTransformationExecutionStep<T, R, FeatureExpect<T, R>> |