我使用Assert.fail获取空元素列表。我需要在Assert.fail(errorDivs.get(0).getText());
所以我可以在报告中看到该消息。我怎样才能做到这一点 ?
当我将消息添加为
时 Assert.fail("Some message",errorDivs.get(0).getText())
eclipse给了我警告"The method fail(String, Throwable) in the type Assert is not applicable for the arguments (String, String)"
由于
答案 0 :(得分:1)
怎么样
Assert.fail( "Some message" + errorDivs.get(0).getText() );
赋予JavaDoc for Assert.fail()
- 该方法采用单个String参数。
干杯,
答案 1 :(得分:0)
您需要向方法fail()
发送有关错误的异常。
Assert.fail("Some message", new Exception(errorDivs.get(0).getText()));