Failed assertion

Report a typo

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?

Select one option from the list
___

Create a free account to access the full topic