fun <T> RootExpect<T>.withOptions(configuration: ExpectBuilder.OptionsChooser<T>.() -> Unit): Expect<T>
(source)fun <T, R> FeatureExpect<T, R>.withOptions(configuration: FeatureExtractorBuilder.OptionsChooser<R>.() -> Unit): Expect<R>
(source)
Uses the given configuration-lambda to create an ExpectOptions which in turn is used to override (parts) of the existing configuration.
Return
An Expect for the current subject of the assertion.
fun <T> RootExpect<T>.withOptions(options: ExpectOptions<T>): Expect<T>
(source)fun <T, R> FeatureExpect<T, R>.withOptions(options: FeatureOptions<R>): Expect<R>
(source)
Uses the given options to override (parts) of the existing configuration.
Return
An Expect for the current subject of the assertion.