ExpectedException.expectMessage((String)null)不起作用
我正在编写JUnit4单元测试,并且有一个条件,我需要声明使用null
消息引发异常。
@Rule
public final ExpectedException exception = ExpectedException.none();
@Test
public final void testNullException() throws Exception {
exception.expect(Exception.class);
exception.expectMessage((String) null);
mPackage.getInfo(null);
}
mPackage.getInfo(null)
行正确地引发了一个带有null
消息的Exception,但是JUnit测试失败并显示消息:
java.lang.AssertionError:
Expected: (an instance of java.lang.Exception and exception with message a string containing null)
but: exception with message a string containing null message was null
无论如何,用JUnit4的方式来测试一个带有null
消息的异常。 (我知道我可以捕捉到异常情况并自己检查条件)。
使用org.hamcrest.Matcher
与org.hamcrest.core.IsNull
为我工作。
语法是,
@Rule
public final ExpectedException exception = ExpectedException.none();
@Test
public final void testNullException() throws Exception {
exception.expect(Exception.class);
Matcher<String> nullMatcher = new IsNull<>();
exception.expectMessage(nullMatcher);
mPackage.getInfo(null);
}
链接地址: http://www.djcxy.com/p/81717.html
上一篇: ExpectedException.expectMessage((String) null) is not working