assert(false);
导致测试失败的可接受方式是什么?
此外,如果在尝试访问类的私有方法时抛出 NoSuchMethodException或SecurityException,我是否应该导致 TestNG 测试失败,或者我应该只打印异常的堆栈跟踪?
@Test
public void getLevelTest() {
try {
menu.getClass().getDeclaredMethod("getLevel",int.class,String.class);
} catch (NoSuchMethodException | SecurityException e) {
assert(false);
}
}