Suppose we have the following test method:
@Test
fun testEquality() {
val expected = 2
val actual = 3
assertEquals(expected, actual)
}
What will be the result of running this test?
Suppose we have the following test method:
@Test
fun testEquality() {
val expected = 2
val actual = 3
assertEquals(expected, actual)
}
What will be the result of running this test?
Create a free account to access the full topic