So the question is: what JUnit command i should use to check that the expected is not equal to the actual. For example i use assertEquals like this
assertEquals(tr1.detectTriangle(), tr1.TR_EQUILATERAL);
So here expected variable is 2 but actual is 1 and test fails. What command i should use to make this test passed?