Contains the out-of-the-box expectation verb expect.
enum class AssertionVerb : StringBasedTranslatable
The Translatable for the assertion expect. |
fun <T> expect(subject: T): RootExpect<T>
Creates an Expect for the given subject. fun <T> expect(subject: T, assertionCreator: Expect<T>.() -> Unit): Expect<T>
Creates an Expect for the given subject and appends the expectations the given assertionCreator-lambda creates as group to it. fun <T, R> Expect<T>. |