/** Test of setProfissao method, of class Pacientes. */
 @Test
 public void testSetProfissao() {
   System.out.println("setProfissao");
   String profissao = "20/12/1990";
   Pacientes instance = new Pacientes();
   instance.setProfissao(profissao);
 }
 /** Test of setDataNascimento method, of class Pacientes. */
 @Test
 public void testSetDataNascimento() {
   System.out.println("setDataNascimento");
   String dataNascimento = "20/12/1990";
   Pacientes instance = new Pacientes();
   instance.setDataNascimento(dataNascimento);
 }
 /** Test of getProfissao method, of class Pacientes. */
 @Test
 public void testGetProfissao() {
   System.out.println("getProfissao");
   Pacientes instance = new Pacientes();
   String expResult = "20/12/1990";
   String result = instance.getProfissao();
   assertEquals(expResult, result);
 }
 /** Test of setLocalidad method, of class Pacientes. */
 @Test
 public void testSetLocalidad() {
   System.out.println("setLocalidad");
   String localidad = "";
   Pacientes instance = new Pacientes();
   instance.setLocalidad(localidad);
   // TODO review the generated test code and remove the default call to fail.
   // fail("The test case is a prototype.");
 }
 /** Test of setDomicilio_pac method, of class Pacientes. */
 @Test
 public void testSetDomicilio_pac() {
   System.out.println("setDomicilio_pac");
   String domicilio_pac = "";
   Pacientes instance = new Pacientes();
   instance.setDomicilio_pac(domicilio_pac);
   // TODO review the generated test code and remove the default call to fail.
   // fail("The test case is a prototype.");
 }
 /** Test of setNro_afiliado method, of class Pacientes. */
 @Test
 public void testSetNro_afiliado() {
   System.out.println("setNro_afiliado");
   int nro_afiliado = 0;
   Pacientes instance = new Pacientes();
   instance.setNro_afiliado(nro_afiliado);
   // TODO review the generated test code and remove the default call to fail.
   // fail("The test case is a prototype.");
 }
 /** Test of setDni_tutor method, of class Pacientes. */
 @Test
 public void testSetDni_tutor() {
   System.out.println("setDni_tutor");
   int dni_tutor = 0;
   Pacientes instance = new Pacientes();
   instance.setDni_tutor(dni_tutor);
   // TODO review the generated test code and remove the default call to fail.
   // fail("The test case is a prototype.");
 }
 /** Test of setObra_social method, of class Pacientes. */
 @Test
 public void testSetObra_social() {
   System.out.println("setObra_social");
   String obra_social = "";
   Pacientes instance = new Pacientes();
   instance.setObra_social(obra_social);
   // TODO review the generated test code and remove the default call to fail.
   // fail("The test case is a prototype.");
 }
 /** Test of getNro_afiliado method, of class Pacientes. */
 @Test
 public void testGetNro_afiliado() {
   System.out.println("getNro_afiliado");
   Pacientes instance = new Pacientes();
   int expResult = 0;
   int result = instance.getNro_afiliado();
   assertEquals(expResult, result);
   // TODO review the generated test code and remove the default call to fail.
   // fail("The test case is a prototype.");
 }
 /**
  * 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.");
 }
 /**
  * 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.");
 }