标签: exception java-ee-7 exceptionmapper
如何在使用异常映射器时使用Junit4测试抛出的异常?
答案 0 :(得分:0)
测试执行期望的抛出异常。请使用:
@Test(expected=<ExpectedException>.class) public void testThrownException() { // Your test code that throws the expected exception }
如果您的代码抛出预期的异常,并且断言失败以及代码抛出的任何其他异常失败,则测试将通过。