/** Test of find method, of class GeneralRepository. */
 @Test
 public void testFind() {
   System.out.println("find");
   int id = 0;
   GeneralRepository instance = new GeneralRepository();
   General expResult = null;
   General result = instance.find(id);
   assertEquals(expResult, result);
   // TODO review the generated test code and remove the default call to fail.
   fail("The test case is a prototype.");
 }