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