``` @Test fun contains() { expect(listOf(1,...
# strikt
c
Copy code
@Test
  fun contains() {
    expect(listOf(1, 2, 3)).containsExactlyInAnyOrder(1, 2)
  }