/** Test of registrarProducto method, of class ICtrlProducto. */
 @Test
 public void testRegistrarProducto() {
   System.out.println("registrarProducto");
   DataIndividual di = null;
   String nomRest = "";
   boolean promocional = false;
   ICtrlProducto instance = new ICtrlProductoImpl();
   instance.registrarProducto(di, nomRest, promocional);
   // TODO review the generated test code and remove the default call to fail.
   // fail("The test case is a prototype.");
 }