0
我有一個場景,我想在同一個測試中爲2個不同的組使用2個不同的值。是否可以使用組內測試
像讓說
@Test(groups = ["Abc", "Def"])
void testPqr() {
int i
// Is there a way to do something like below in TestNG
if (@groups ="abc") {
i=10
}
if {@groups ="Def"} {
i=15
}
}
是否有可能使用一組內部測試?