/** Test of list method, of class XMLEtudiantUE. */
 @Test
 public void testList() throws Exception {
   System.out.println("list XMLEtudiantUE");
   XMLEtudiantUE instance = new XMLEtudiantUE();
   ArrayList expResult = null;
   ArrayList result = instance.list();
   assertEquals(expResult, result);
   // TODO review the generated test code and remove the default call to fail.
   fail("The test case is a prototype.");
 }
 /** Test of delete method, of class XMLEtudiantUE. */
 @Test
 @Ignore
 public void testDelete() throws Exception {
   System.out.println("delete XMLEtudiantUE");
   EtudiantUE obj = null;
   XMLEtudiantUE instance = new XMLEtudiantUE();
   instance.delete(obj);
   // TODO review the generated test code and remove the default call to fail.
   fail("The test case is a prototype.");
 }
 /** Test of find method, of class XMLEtudiantUE. */
 @Test
 public void testFind() throws Exception {
   System.out.println("find XMLEtudiantUE");
   Object id = null;
   XMLEtudiantUE instance = new XMLEtudiantUE();
   EtudiantUE expResult = null;
   EtudiantUE 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.");
 }