/** Test of listarIndividuales method, of class ICtrlProducto. */
 @Test
 public void testListarIndividuales() {
   System.out.println("listarIndividuales");
   String nomRest = "";
   ICtrlProducto instance = new ICtrlProductoImpl();
   Map expResult = null;
   Map result = instance.listarIndividuales(nomRest);
   assertEquals(expResult, result);
   // TODO review the generated test code and remove the default call to fail.
   // fail("The test case is a prototype.");
 }