containsAll

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

Deprecated

renamed to containsAtLeast

Replace with

containsAtLeast(*elements)

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

See also


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

Deprecated

renamed to containsAtLeast

Replace with

containsAtLeast(*elements)

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>>.containsAll(vararg elements: Pair<K, V>)

Deprecated

renamed to containsAtLeast

Replace with

containsAtLeast(*elements)

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

See also


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

Deprecated

renamed to containsAtLeast

Replace with

containsAtLeast(*elements)

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

See also