@AfterClass
 public static void oneTimeTearDown() {
   // one-time cleanup code
   try {
     Utility.deleteAccountIfExists(testAcct);
     Utility.deleteAccountIfExists(testAcct2);
     Utility.deleteDomainIfExists(testAcctDomain);
   } catch (Exception ex) {
     System.err.println("Exception " + ex.toString() + " thrown inside oneTimeTearDown");
   }
 }