Unit testing of every method could let you figure out what is failing. Just have unit testing for every method to get to know what is causing failure.
try{
// do stuff...
fail("Exception not thrown");
}catch(Exception e){
assertTrue(e.hasSomeFlag()
Comments
Leave a comment