我想为IndexOutOfBoundsException
. 请记住,我们应该使用 JUnit 3。
我的代码:
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 来做到这一点,@Test(expected = IndexOutOfBoundsException.class)
但我在哪里找不到如何在 JUnit 3 中做到这一点。
如何使用 JUnit 3 进行测试?