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)
AssertionError - Might throw an AssertionError if the assertion made is not correct.
Return
This plant to support a fluent API.