/** Test of delete method, of class GeneralRepository. */
 @Test
 public void testDelete() {
   System.out.println("delete");
   General object = null;
   GeneralRepository instance = new GeneralRepository();
   instance.delete(object);
   // TODO review the generated test code and remove the default call to fail.
   fail("The test case is a prototype.");
 }