异常发生时跳过测试

时间:2016-04-28 10:34:52

标签: java junit

我有许多测试需要外部网页才能通过。偶尔,虽然网页超时并导致我的测试失败。

如果说发生HTTPException并且警告用户,而不是完全失败测试和我的travis构建,Junit是否有可能跳过这些测试。 我已经看过使用条件忽略但是我不想两次查询网页 这是一个测试的例子:

@Test
public void testScrapePageAuthorDetection21()
        throws UrlAlreadyInSystemException, BannedUrlException,
        IOException, DriverException, RelativeUrlException,
        HomePageException {

    String href = "http://www.20minutos.es/deportes/noticia/candidatura-madrid-juegos-olimpicos-demasiado-pronto-2316527/0/";
    // Query the URL above
    // sometimes this will fail, 
}

0 个答案:

没有答案