izacus
assertThat(list, IsIterableContainingInOrder.contains(anotherList))
tgirard12
infix fun <E, T : List<E>> T?.mustEqualTo(theOther: List<E>) = Assert.assertEquals(theOther, this)
myList mustEqualTo listOf("1", "2")
A modern programming language that makes developers happier.