blob: 6d043ea4f42cf2a845cb1de7b1e2162d9b0116f1 [file]
fun <T> assertEquals(a: T, b: T) {
if (a != b) throw RuntimeException("'$a' was not equal to '$b'")
}