/** Test of addComando method, of class ControleRemoto. */
 @Test
 public void testAddComando() {
   System.out.println("addComando");
   Comando c = null;
   ControleRemoto instance = new ControleRemoto();
   instance.addComando(c);
   // TODO review the generated test code and remove the default call to fail.
   fail("The test case is a prototype.");
 }
 /** Test of desfazer method, of class ControleRemoto. */
 @Test
 public void testDesfazer() {
   System.out.println("desfazer");
   ControleRemoto instance = new ControleRemoto();
   String expResult = "";
   String result = instance.desfazer();
   assertEquals(expResult, result);
   // TODO review the generated test code and remove the default call to fail.
   fail("The test case is a prototype.");
 }