dependsOnMethods注释抛出java.io.IOException,它未使用@Test注释或未包含

时间:2015-07-07 05:42:22

标签: java annotations testng

我得到例外:     抛出java.io.IOException,它没有使用@Test注释或不包括在内。

使用@Test(dependsOnMethods=..)

我有两种方法:

@Test(dependsOnMethods=.."xyz")
public void abc() throws IOException(){
 //some operation
}

@Test
public void xyz() throws IOException(){
 //some operation
}

Exception is :
Caused by: 
  

org.testng.TestNGException:       abc()取决于方法public void xyz()抛出java.io.IOException,它没有用@Test注释   包括在内。

我尝试过expectExceptions注释,但仍然会发生异常。有人可以建议如何处理它。

0 个答案:

没有答案