unittest exception test java code example
Example: expected exception junit
@Test(expected = SomeException.class)
public void testName() {
//some code
}
@Test(expected = SomeException.class)
public void testName() {
//some code
}