私は1つのテストからITestContextを使用して別のPARAMを渡すためにしようとしている:ITestContextを使用して、他の1つの試験からのparamを渡すことができません:ヌル(TestNGの+ Javaの)を返します
public class One {
int waterfallId;
@Test()
public void testOne(ITestContext ctx) {
/*here waterfallId was initialized*/
ctx.setAttribute("waterfallId", waterfallId);
}
@Test()
public void testTwo(ItestContext ctx) {
ctx.getAttribute("waterfallId"); //returns null
}
}
間違っているのですか?問題を解決する他の方法はありますか?