Guest User

Untitled

a guest
Nov 19th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. @Test
  2. public void delete() throws Exception {
  3. Container container = LocalTransaction.wrapReturnWithListeners(() -> {
  4. final Container saved = createContainer();
  5.  
  6. if (containerAPI.delete(saved, user, false))
  7. return saved;
  8. else
  9. throw new DotDataException("An error occurred deleting container");
  10. });
  11.  
  12. AssetUtil.assertDeleted(container.getInode(), container.getIdentifier(), Inode.Type.CONTAINERS.getValue());
  13. }
Add Comment
Please, Sign In to add comment