私のテスト:これはサックス後のものに下線を引いています。そして、私はtry-catchブロックを持っている....しかし、インターネットが例外をテストするための適切な方法が@Test(expected=IllegalArgumentException.class)
Java:Junit4:例外テストが動作しない、try-catchブロックを主張:
@Test(expected= XMLClientNotFoind.class)
public void testGetClientFromIP() throws XMLClientNotFound{
...
assertEquals(c, sax.getClientFromIP("101.0.2.01"));
}
および方法であることを述べていると主張し、getClientFromIPはここにある:
public Client getClientFromIP(String ip) throws XMLClientNotFound {
...
throw new XMLClientNotFound();
}
そして、私の例外:すべての
public class XMLClientNotFound extends Exception{
}