containsAtLeast use varargs to list the elements, it does not contain a collection.
Something like this:
assertThat(listOf(1, 2, 3)).containsAtLeast(listOf(1, 2))
was probably intended to be this (pass in using vararg not as a list):
assertThat(listOf(1,2,3)).containsAtLeast(1, 2)
Would be great to detect and provide a quick fix for this.
Related to:
containsAtLeastuse varargs to list the elements, it does not contain a collection.Something like this:
was probably intended to be this (pass in using vararg not as a list):
Would be great to detect and provide a quick fix for this.
Related to:
containsAll()assertk-org/assertk#2