【发布时间】:2021-04-24 09:29:52
【问题描述】:
我从未用 JUnit 测试过,不知道在这种情况下我必须做什么
@Test(expected = ArrayIndexOutOfBoundsException.class)
public void throwsArrayIndexException() {
...
}
我只需要测试,如果主方法中的 args[0]==0,ArrayIndexOutOfBoundsException 是预期的,我尝试了 if(args[0]==0){throw new ArrayIndexOutOfBoundException} 但没有工作.. 我感谢您的帮助!提前致谢!
【问题讨论】:
标签: java testing junit args arrayindexoutofboundsexception