Exemplo n.º 1
0
 /**
  * Test of BuscarNom_Ape method, of class Pacientes.
  *
  * @throws java.lang.Exception
  */
 @Test
 public void testBuscarNom_Ape() throws Exception {
   System.out.println("BuscarNom_Ape");
   int dni = 1234;
   Pacientes instance = new Pacientes();
   String expResult = "bellini, matia";
   String result = instance.BuscarNom_Ape(dni);
   assertEquals(expResult, result);
   // TODO review the generated test code and remove the default call to fail.
   // fail("The test case is a prototype.");
 }