I was trying with a simple code using org.testng.Assert
to assert 2 use-cases. In the first use-case I am asserting 2 unequal values which Fail
correctly.
But in the second use-case when I am asserting 2 unequal values within the try-catch block, the result is always returned as Pass
My code is as follows:
package demo;
import org.testng.Assert;
import org.testng.annotations.Test;
public class Q43710035
{
@Test
public void test1()
{
System.out.println("Within test1");
int a = 12;
int b =20;
Assert.assertEquals(a, b);
}
@Test
public void test2()
{
System.out.println("Within test2");
int a = 12;
int b =20;
try
{
Assert.assertEquals(a, b);
}catch(Throwable t)
{
System.out.println("Exception Occurred");
}
}
}
The result I am getting is:
Within test1
Within test2
Exception Occurred
PASSED: test2
FAILED: test1
java.lang.AssertionError: expected [20] but found [12]
at org.testng.Assert.fail(Assert.java:94)
My question are:
Test
?Exception Occurred
gets printed. Why should try
block fail here when the assertion code is getting executed?If you go through the source code of junit4, https://github.com/junit-team/junit4/blob/master/src/main/java/junit/framework/Assert.java#L71
You will get why the test1 is failing
/** * Asserts that two objects are equal. If they are not * an AssertionFailedError is thrown with the given message. */
static public void assertEquals(String message, Object expected, Object actual) {
if (expected == null && actual == null) {
return;
}
if (expected != null && expected.equals(actual)) {
return;
}
failNotEquals(message, expected, actual); //It calls Part#2
}
static public void failNotEquals(String message, Object expected, Object actual) {
fail(format(message, expected, actual)); //It calls Part#3 format(...) method
}
public static String format(String message, Object expected, Object actual) {
String formatted = "";
if (message != null && message.length() > 0) {
formatted = message + " ";
}
return formatted + "expected:<" + expected + "> but was:<" + actual + ">";
}
So you have gotten Part#3's return message as
java.lang.AssertionError: expected [20] but found [12]
Expecting Exceptions JUnit Rule
To make an assertion that an exception was thrown with JUnit, it’s fairly common to use the try/fail/catch idiom or the expected element of the @Test annotation. Despite being more concise than the former, there is an argument that using expected doesn’t support all the cases you may want to test. The example being to perform additional testing after the exception or testing against the actual exception message.
JUnit 4.7 introduces the next progression, a @Rule that offers the best of both worlds. This articles weighs up the pros and cons of each approach and takes a closer look at the syntax of each. The try/fail/catch Idiom
The typical pattern is to catch an exception or fail explicitly if it was never thrown.
@Test
public void example1() {
try {
find("something");
fail();
} catch (NotFoundException e) {
assertThat(e.getMessage(), containsString("could not find something"));
}
// ... could have more assertions here
}
which would highlight a failure in the following way.
java.lang.AssertionError: expected an exception
at org.junit.Assert.fail(Assert.java:91)
at bad.roboot.example.ExceptionTest.example1(ExceptionTest.java:20)
...
The idiom has potential advantages in that it offers the opportunity to assert against the actual exception as well as performing additional work after the expectation. Aside from the noise, the major drawback however is that its very easy to forget to include the fail call. If genuinely doing test first, where we always run the test red, this wouldn’t be a problem but all too often things slip through the net. In practice, I’ve seen far too many examples with a missing fail giving false positives.
Using the expected element, we can rewrite the test as follows.
@Test (expected = NotFoundException.class)
public void example2() throws NotFoundException {
find("something");
// ... this line will never be reached when the test is passing
}
which will result in the following failure.
java.lang.AssertionError: Expected exception: bad.robot.example.NotFoundException
Resource Link: What exactly does assertEquals check for when asserting lists?