constructionDefectDao.verify();
// reset expectations
constructionDefectDao.reset();
// remove
Exception ex = new ObjectRetrievalFailureException(ConstructionDefect.class, constructionDefect.getConstructionDefectId());
constructionDefectDao.expects(once()).method("removeConstructionDefect").isVoid();
constructionDefectDao.expects(once()).method("getConstructionDefect").will(throwException(ex));
constructionDefectManager.removeConstructionDefect(constructionDefectId);
try {
constructionDefectManager.getConstructionDefect(constructionDefectId);