林前Run方法:使用<code>testng 6.11</code>和寫作測試,下面測試類的每個測試
public class MyTest{
public int i;
public void init(){
//initialize i
}
@Test
public void test1(){
//test some
}
@Test
public void test2(){
//Here I need fresh value of i as it would be
//right after invocation of init()
//...
//test something else
}
}
是否有可能使TestNG的運行init()
方法在測試類的每個測試的調用之前?
在我看來,像你應該閱讀[一些文檔(http://testng.org/doc/documentation-main.html)。這個問題非常懶惰 - 我希望獲得超過5k聲譽的用戶更多。 –