Beispiel #1
0
        public void TestGestionEps()
        {
            string    EpsEsperada = "{'nombre':'Sura'}";
            GestorEps Gp          = new GestorEps();

            Assert.AreEqual(EpsEsperada, Gp.MostrarEps("Sura"));
        }
Beispiel #2
0
        private void button2_Click(object sender, EventArgs e)
        {
            GestorPaciente paciente = new GestorPaciente();
            GestorEps      eps      = new GestorEps();

            if (eps.verificarNumero(textCEDULA.Text) == true)
            {
                try
                {
                    paciente.InsertarPaciente(textNOMBRE.Text, textAPELLIDO.Text, Convert.ToInt32(textCEDULA.Text), Convert.ToInt32(textTelefono.Text), textDireccion.Text, nombreEps, txtContrasena.Text.ToString());
                    MessageBox.Show("Registrado Correctamente");
                    textNOMBRE.Text    = string.Empty;
                    textAPELLIDO.Text  = string.Empty;
                    textCEDULA.Text    = string.Empty;
                    txtContrasena.Text = string.Empty;
                    textDireccion.Text = string.Empty;
                    textTelefono.Text  = string.Empty;
                }catch (Exception l)
                {
                    MessageBox.Show("Se presento un error: " + l.Message);
                }
            }
            else
            {
                MessageBox.Show("Algunos de los campos tienen entradas de texto incorrectas o estan vacios, verifiquelos e intente de nuevo");
            }
        }
Beispiel #3
0
        public void TestMostrarEps()
        {
            string      EpsEsperada = "[{‘IDEps’:’1’,’Nombre’:’SURA’},{‘IDEps’:’4’,’Nombre’:’Sabia’}]".Replace("’", "'");
            Convertidor obj1        = new Convertidor();
            GestorEps   Gp          = new GestorEps();

            Assert.AreEqual(EpsEsperada, obj1.DataTableToJsonObj(Gp.MostrarEps1()).Replace("\"", "'"));
        }
Beispiel #4
0
        public void TestCentrosXEps()
        {
            string    EpsEsperada = "[{‘Nombre’:’ClinicaAntioquia’},{‘Nombre’:’CaldasAntioquia’},{‘Nombre’:’CaldasAntioquia’}]".Replace("’", "'");
            GestorEps Gp          = new GestorEps();

            Convertidor obj1 = new Convertidor();

            Assert.AreEqual(EpsEsperada, obj1.DataTableToJsonObj(Gp.MostrarEps("SURA")).Replace("\"", "'"));
        }