2.3 Test Engine kotlin import org.junit.jupiter.api.Test import org.junit.jupiter.api.Assertions.* class MyTest { @Test fun testAddition() { val result = add(2, 3) assertEquals(5, result) } private fun add(a: Int, b: Int): Int { return a + b } }