0

如何在使用异常映射器时使用 Junit4 测试抛出的异常?

4

1 回答 1

0

测试抛出的异常,预期从执行。请用 :

@Test(expected=<ExpectedException>.class)
public void testThrownException() {
// Your test code that throws the expected exception
}

如果您的代码抛出预期的异常,测试将通过,而断言失败和代码抛出的任何其他异常则失败。

于 2016-11-24T17:16:46.690 回答