我有一個數據提供者象下面這樣:如何從testng數據提供者中檢索特定行數據?
@DataProvider(name = "therapistToDoList") public static Object[][] data(){
return new Object[][]{
{"06012017", "Low", "This is a low task description added via automation for therapist/admin."},
{"06012017", "Medium", "This is medium task description added via automation for therapist/admin."},
{"06012017", "High", "This is high task description added via automation for therapist/admin."},
};
}
如何運行使用此數據提供我的測試案例,但只針對一個具體的行和不是所有的人?
這對測試數據提供者甚至可能嗎?
爲什麼不評論或刪除這些行,如果你不使用它們? –