defectRecomendationDao.verify();
// reset expectations
defectRecomendationDao.reset();
// remove
Exception ex = new ObjectRetrievalFailureException(DefectRecomendation.class, defectRecomendation.getDefectRecomendationId());
defectRecomendationDao.expects(once()).method("removeDefectRecomendation").isVoid();
defectRecomendationDao.expects(once()).method("getDefectRecomendation").will(throwException(ex));
defectRecomendationManager.removeDefectRecomendation(defectRecomendationId);
try {
defectRecomendationManager.getDefectRecomendation(defectRecomendationId);