improve integration tests

This commit is contained in:
Sebastian Sdorra
2011-02-18 10:46:02 +01:00
parent 204c10155e
commit 6e200b4e92
3 changed files with 18 additions and 3 deletions

View File

@@ -236,6 +236,10 @@ public class RepositoryITCase extends AbstractAdminITCaseBase
assertNotNull(response);
assertTrue(response.getStatus() == 204);
wr = createResource(client, "repositories/".concat(id));
response = wr.get(ClientResponse.class);
assertNotNull(response);
assertTrue(response.getStatus() == 404);
}
//~--- get methods ----------------------------------------------------------