I have implemented a generic test for the hashCode and equals methods using JUnit's experimental @Theory annotation. The test case class itself is based on dfa's version.
However, when I was trying to test the java.net.InetAddress class, I have come across a peculiar problem if the method that supplies the data points contains code that throws an exception (in this case an UnknownHostException):
So I tried two alternatives that both led to the same unsatisfactory result:
Declare the method as throwing the appropriate exception:
@DataPoints public static InetAddress[] declareException() throws UnknownHostException { return new InetAddress[] { InetAddress.getByName("not a valid internet address") }; }Explicitly catch the exception and re-throw as an
AssertionError:@DataPoints public static InetAddress[] rethrowAsAssertionError() { try { return new InetAddress[] { InetAddress.getByName("not a valid internet address") }; } catch(UnknownHostException ex) { throw new AssertionError(ex); } }
In both cases, an AssertionError is thrown with the unhelpful message "Never found parameters that satisfied method assumptions. Violated assumptions: []", which is the same as not having a @DataPoints annotated method in the first place.
Does anyone know if there is a way to propagate the exception to JUnit (and, ultimately, the user) or is this a bug in JUnit?
UnknownHostException, and (b) I can think of use cases (e.g. using a live database/webserver ...) that can throw exceptions even on correct code. So a mechanism is needed to inform the user that the exception has occurred. – ThomasH Nov 17 '11 at 12:29@DataPointsthe way it was intended. The data should be values the should produce deterministic results, not a function of the code you are testing. – unholysampler Nov 17 '11 at 15:27