JUnit Exception Testing
Jump to navigation
Jump to search
External
Internal
Idioms
Try/Catch
try {
...
fail("should have thrown exception");
}
catch(SomeException e) {
assertEquals("some message", e.getMessage());
}
assertThrows()
@Test
public void testExceptionAndState() {
List<Object> list = new ArrayList<>();
IndexOutOfBoundsException thrown = assertThrows(
IndexOutOfBoundsException.class,
() -> list.add(1, new Object()));
// assertions on the thrown exception
assertEquals("Index: 1, Size: 0", thrown.getMessage());
// assertions on the state of a domain object after the exception has been thrown
assertTrue(list.isEmpty());
}
@Test Annotation 'expected' Attribute
@Test(expected = ArrayIndexOutOfBoundsException.class)
public void testSomething() {
...
}