@Override
 public void testServerFound() throws Exception {
   // The superclass throws an exception, but we want this
   // to be a failure, not an error
   try {
     super.testServerFound();
   } catch (Exception e) {
     // Use assertNull to get the stack trace in the test report
     assertNull("Deployment had no exceptions", e);
   }
 }