doc / ch.tutteli.atrium.domain.builders.utils / ArgumentToNullOrMapperBuilder

ArgumentToNullOrMapperBuilder

class ArgumentToNullOrMapperBuilder<T : Any>
Deprecated: Use ArgumentMapperBuilder, mapArguments respectively, from atrium-logic; will be removed with 1.0.0

Builder to map variable length arguments formulated as (first: T, vararg others : T) to something else.

Its usage is intended to turn the nullable argument type of the given argumentMapperBuilder into its non-nullable type if the argument is not null in order that the non-nullable type can be used/passed to function which expect a non-nullable type.

Constructors

<init>

ArgumentToNullOrMapperBuilder(argumentMapperBuilder: ArgumentMapperBuilder<T?>)

Builder to map variable length arguments formulated as (first: T, vararg others : T) to something else.

Properties

argumentMapperBuilder

val argumentMapperBuilder: ArgumentMapperBuilder<T?>

Functions

toAssert

fun <R : Any> toAssert(assertionCreator: Assert<R>.(T) -> Unit): Pair<(Assert<R>.() -> Unit)?, Array<(Assert<R>.() -> Unit)?>>

Maps each argument to null if it is already null and if not, then to an AssertionPlantNullable<R> lambda with receiver by using the given assertionCreator (passing in the argument).

toExpect

fun <R : Any> toExpect(assertionCreator: Expect<R>.(T) -> Unit): Pair<(Expect<R>.() -> Unit)?, Array<(Expect<R>.() -> Unit)?>>

Maps each argument to null if it is already null and if not, then to an Expect<R> lambda with receiver by using the given assertionCreator (passing in the argument).