有一個API調用,比如:如何編寫一個.feature文件,通過我無法控制的ID測試刪除?
public int deleteGroup(String groupIdentifier) throws Exception;
我寫了一個.feature:
Scenario: Deleting an existing group (by its ID) successfully
Given I am authorized
And <groupid> is already stored in WAAD
When I call the delete group method for group <groupid>
Then group <groupid> should NOT be present in WAAD
Examples:
| groupid |
| test.group1 |
| test.group2 |
我如何能確保給定的UID是在數據庫中,如果我不能創建通過UID的入口?我可以按名稱創建一個組。
這個測試的目標是什麼?我們想要驗證什麼?該組可以刪除?或者它可以被組ID專門刪除? – cdlf 2014-08-29 16:12:39
目標是驗證任何組可以通過其組ID刪除。 – 2014-09-01 06:20:38