Java:使用 Junit 3 进行异常测试
2022-09-02 11:17:54
我想为 .请记住,我们应该使用JUnit 3。IndexOutOfBoundsException
我的代码:
public boolean ajouter(int indice, T element) {
if (indice < 0 || indice > (maListe.size() - 1)) {
throw new IndexOutOfBoundsException();
} else if (element != null && !maListe.contains(element)) {
maListe.set(indice, element);
return true;
}
}
经过一些研究,我发现你可以使用JUnit 4来做到这一点,但是我没有在JUnit 3中找到如何做到这一点。@Test(expected = IndexOutOfBoundsException.class)
如何使用 JUnit 3 对此进行测试?