class Entries<in T : Any> : GroupWithoutNullableEntries<(Assert<T>.() -> Unit)?>, GroupWithNullableEntries<(Assert<T>.() -> Unit)?>, VarArgHelper<(Assert<T>.() -> Unit)?>
Parameter object to express a Group of identification lambdas.
It is also used to express (Assert<T>.() -> Unit)?, vararg (Assert<T>.() -> Unit)?
at other places the infix-api.
In case null
is used for an identification lambda then it is expected that the corresponding entry
is null
as well.
assertionCreatorOrNull
- The identification lambda identifying the entry where an entry is considered
to be identified if it holds all Assertions the lambda might create.
In case it is defined as null
, then an entry is identified if it is null
as well.
otherAssertionCreatorsOrNulls
- A variable amount of additional identification lambdas or null
s.
Entries(assertionCreatorOrNull: (Assert<T>.() -> Unit)?, vararg otherAssertionCreatorsOrNulls: (Assert<T>.() -> Unit)?)
Parameter object to express a Group of identification lambdas. |
val assertionCreatorOrNull: (Assert<T>.() -> Unit)?
The identification lambda identifying the entry where an entry is considered
to be identified if it holds all Assertions the lambda might create.
In case it is defined as |
|
val expected: (Assert<T>.() -> Unit)?
The first argument in the argument list |
|
vararg val otherAssertionCreatorsOrNulls: Array<(Assert<T>.() -> Unit)?>
A variable amount of additional identification lambdas or |
|
val otherExpected: Array<(Assert<T>.() -> Unit)?>
The second argument in the argument list |
open val mapArguments: ArgumentMapperBuilder<T>
Creates an ArgumentMapperBuilder which allows to map expected and otherExpected. |
fun toList(): List<(Assert<T>.() -> Unit)?>
Returns the members of the group as List. |