我有一个关于testng的问题。
我有类似的东西:
@Test
public initializeMethod() {
//here I do something that is needed before my real test method
}
@Test (depends on initializeMethod)
public myRealTest1{
//my test 1
}
@Test (depends on myRealTest1)
public myRealTest2{
//my test 2
}
是否可以在 testng 报告中跳过 initializeMethod(我的意思是在报告中我想查看测试的真实计数(2 但不是 3))?