Files
2021-12-20 12:35:47 +03:00

24 lines
279 B
Kotlin
Vendored

// TEST_RUNNER: DEFAULT
import kotlin.test.*
@Test
fun addition() {
assertEquals(42, 40 + 2)
}
@Test
fun multiplication () {
assertEquals(42, 21 * 2)
}
@Test
fun subtraction () {
assertEquals(42, 50 - 8)
}
@Test
fun division () {
assertEquals(42, 126 / 3)
}