containsAtLeast

fun Assert<Array<*>>.containsAtLeast(vararg elements: Any?)

Asserts the array contains at least the expected elements, in any order. The array may also contain additional elements.

See also


fun Assert<Iterable<*>>.containsAtLeast(vararg elements: Any?)

Asserts the iterable contains at least the expected elements, in any order. The collection may also contain additional elements.

See also


fun <K, V> Assert<Map<K, V>>.containsAtLeast(vararg elements: Pair<K, V>)

Asserts the map contains at least the expected elements. The map may also contain additional elements.

See also


fun Assert<Sequence<*>>.containsAtLeast(vararg elements: Any?)

Asserts the sequence contains at least the expected elements, in any order. The collection may also contain additional elements.

See also