1112131415161718192021
@Test public void shouldNotWrapDBException(){ Meal m = new Meal(); try{ m.saveIt(); }catch(DBException e){ the(e.getCause() instanceof DBException).shouldBeFalse(); } } }