There is an API call like:
public int deleteGroup(String groupIdentifier) throws Exception;
I wrote a .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 |
How can I ensure that the given UID is in the database if I cannot create an entry by UID? I can create a group by name.