/** Test of delete method, of class LaboratorioBean. */
 public void testDelete() {
   System.out.println("delete");
   LaboratorioBean instance = new LaboratorioBean();
   instance.delete();
   // TODO review the generated test code and remove the default call to fail.
   fail("The test case is a prototype.");
 }
 /** Test of setLaboratorio method, of class LaboratorioBean. */
 public void testSetLaboratorio() {
   System.out.println("setLaboratorio");
   Laboratorio laboratorio = null;
   LaboratorioBean instance = new LaboratorioBean();
   instance.setLaboratorio(laboratorio);
   // TODO review the generated test code and remove the default call to fail.
   fail("The test case is a prototype.");
 }
 /** Test of prepararUpdate method, of class LaboratorioBean. */
 public void testPrepararUpdate() {
   System.out.println("prepararUpdate");
   long id = 0L;
   LaboratorioBean instance = new LaboratorioBean();
   instance.prepararUpdate(id);
   // TODO review the generated test code and remove the default call to fail.
   fail("The test case is a prototype.");
 }
 /** Test of getLaboratoriosList method, of class LaboratorioBean. */
 public void testGetLaboratoriosList() {
   System.out.println("getLaboratoriosList");
   LaboratorioBean instance = new LaboratorioBean();
   List expResult = null;
   List result = instance.getLaboratoriosList();
   assertEquals(expResult, result);
   // TODO review the generated test code and remove the default call to fail.
   fail("The test case is a prototype.");
 }