interface FinalStep<T>
(source)
Final step in the assertion verb building process, creates a new Expect based on the so far specified options.
abstract val assertionVerb: Translatable
The previously defined assertion verb. |
|
abstract val maybeSubject: Option<T>
The previously specified subject of the assertion. |
|
abstract val options: ExpectOptions<T>?
Either the previously specified ExpectOptions or |
abstract fun build(): RootExpect<T>
Creates a new Expect based on the previously defined maybeOptions. |
fun <T> create(maybeSubject: Option<T>, assertionVerb: Translatable, options: ExpectOptions<T>?): ExpectBuilder.FinalStep<T> |