doc / ch.tutteli.atrium.api.cc.en_GB / containsNullableValue

containsNullableValue

fun <E, T : Iterable<E>> Assert<T>.containsNullableValue(expectedOrNull: E): AssertionPlant<T> (source)

Makes the assertion that AssertionPlant.subject (which has a nullable entry type) contains the expected nullable value.

It is a shortcut for contains.inAnyOrder.atLeast(1).nullableValue(expectedOrNull)

Exceptions

AssertionError - Might throw an AssertionError if the assertion made is not correct.

Return
This plant to support a fluent API.