inline infix fun <T> Expect<T>.and(o: o): Expect<T>
Can be used to separate single assertions.
For instance expect(1).isLessThan(2).and.isGreaterThan(0)
creates
two assertions (not one assertion with two sub-assertions) - the first asserts that 1 is less than 2 and the second
asserts that 1 is greater than 0. If the first assertion fails, then the second assertion is not evaluated.
o
- The filler object o.
Return
An Expect for the current subject of the assertion.
Since
0.12.0
infix fun <T> Expect<T>.and(assertionCreator: Expect<T>.() -> Unit): Expect<T>
Can be used to create a group of sub assertions when using the fluent API.
For instance assert(1).isLessThan(3).and { isEven(); isGreaterThan(1) }
creates
two assertions where the second one consists of two sub-assertions. In case the first assertion holds, then the
second one is evaluated as a whole. Meaning, even though 1 is not even, it still evaluates that 1 is greater than 1.
Hence the reporting might (depending on the configured Reporter) contain both failing sub-assertions.
Return
An Expect for the current subject of the assertion.
infix fun <E, T : Iterable<E>> IterableContains.Builder<E, T, InOrderSearchBehaviour>.and(only: only): IterableContains.Builder<E, T, InOrderOnlySearchBehaviour>
Defines that the constraint "only
the specified entries exist in the Iterable" shall be applied to this
sophisticated contains in order
Iterable assertion.
Return
The newly created builder.
infix fun <E, T> IterableLikeContains.EntryPointStep<E, T, InOrderSearchBehaviour>.and(only: only): IterableLikeContains.EntryPointStep<E, T, InOrderOnlySearchBehaviour>
Defines that the constraint "only
the specified entries exist in the IterableLike" shall be applied to this
sophisticated contains in order
IterableLike assertion.
Return
The newly created builder.
Since
0.14.0 -- API existed for Iterable but not for IterableLike.
infix fun <K, V, T> MapLikeContains.EntryPointStep<K, V, T, InOrderSearchBehaviour>.and(only: only): MapLikeContains.EntryPointStep<K, V, T, InOrderOnlySearchBehaviour>
Defines that the constraint "only
the specified entries exist in the MapLike" shall be applied to this
sophisticated contains in order
MapLike assertion.
Return
The newly created builder.
Since
0.15.0