interface FinalStep<T> (source)
Final step in the RootExpect building process which creates a new RootExpect based on the so far specified options.
abstract val expectationVerb: Translatable
The previously defined expectation verb.  | 
|
abstract val options: RootExpectOptions<T>?
Either the previously specified RootExpectOptions or   | 
|
abstract val subject: T
The previously specified subject of the expectation.  | 
abstract fun build(): RootExpect<T>
Creates a new Expect based on the previously defined maybeOptions.  | 
operator fun <T> invoke(subject: T, expectationVerb: Translatable, options: RootExpectOptions<T>?): RootExpectBuilder.FinalStep<T> | 
class FinalStepImpl<T> : RootExpectBuilder.FinalStep<T> |