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