Contains parameter objects .
class All<out T> : VarArgHelper<T>
Parameter object to express |
|
class Entries<T> : GroupWithoutNullableEntries<(Expect<T>.() -> Unit)?>, GroupWithNullableEntries<(Expect<T>.() -> Unit)?>, VarArgHelper<(Expect<T>.() -> Unit)?>
Parameter object to express a Group of identification lambdas. |
|
data class Entry<T : Any> : GroupWithoutNullableEntries<(Expect<T>.() -> Unit)?>, GroupWithNullableEntries<(Expect<T>.() -> Unit)?>
Parameter object to express a Group with a single identification lambda. |
|
data class IndexWithCreator<E>
Parameter object which combines an index of type Int with an assertionCreator which defines assertions for a resulting feature of type E. |
|
data class KeyWithCreator<out K, V>
Parameter object which combines an key of type K with an assertionCreator which defines assertions for a resulting feature of type V. |
|
class Pairs<out K, out V> : VarArgHelper<Pair<K, V>>
Parameter object to express |
|
data class PresentWithCreator<E>
Parameter object which represents a present value (e.g. to represent a present |
|
class RegexPatterns : VarArgHelper<String>
Parameter object to express |
|
data class SuccessWithCreator<E>
Parameter object that takes assertionCreator which defines assertions for a resulting feature of type E. |
|
data class Value<T> : GroupWithNullableEntries<T>, GroupWithoutNullableEntries<T>
Represents a Group with a single value. |
|
class Values<out T> : GroupWithoutNullableEntries<T>, GroupWithNullableEntries<T>, VarArgHelper<T>
Represents a Group of multiple values. |