テストについて質問があります。
私は次のようなものを持っています:
@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 をスキップすることは可能ですか (つまり、レポートで実際のテスト数 (3 ではなく 2) を確認したいということです)?