authentificationElementDao.verify();
// reset expectations
authentificationElementDao.reset();
// remove
Exception ex = new ObjectRetrievalFailureException(AuthentificationElement.class, authentificationElement.getAuthentificationId());
authentificationElementDao.expects(once()).method("removeAuthentificationElement").isVoid();
authentificationElementDao.expects(once()).method("getAuthentificationElement").will(throwException(ex));
authentificationElementManager.removeAuthentificationElement(authentificationElementId);
try {
authentificationElementManager.getAuthentificationElement(authentificationElementId);