public void consultarClientesTest() { GestorPlanilla target = new GestorPlanilla(); // TODO: Initialize to an appropriate value IEnumerable<Cliente> expected = null; // TODO: Initialize to an appropriate value IEnumerable<Cliente> actual; actual = target.consultarClientes(); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void consultarClienteXIDTest() { GestorPlanilla target = new GestorPlanilla(); // TODO: Initialize to an appropriate value int pid = 0; // TODO: Initialize to an appropriate value Cliente expected = null; // TODO: Initialize to an appropriate value Cliente actual; actual = target.consultarClienteXID(pid); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void adjuntarCurriculoTest() { GestorPlanilla target = new GestorPlanilla(); // TODO: Initialize to an appropriate value int pidEmpleado = 0; // TODO: Initialize to an appropriate value string pname = string.Empty; // TODO: Initialize to an appropriate value string pcontentType = string.Empty; // TODO: Initialize to an appropriate value byte[] pdata = null; // TODO: Initialize to an appropriate value DateTime pfecha = new DateTime(); // TODO: Initialize to an appropriate value target.adjuntarCurriculo(pidEmpleado, pname, pcontentType, pdata, pfecha); Assert.Inconclusive("A method that does not return a value cannot be verified."); }
public void registrarEmpleadoTest() { GestorPlanilla target = new GestorPlanilla(); // TODO: Initialize to an appropriate value string pnombre = string.Empty; // TODO: Initialize to an appropriate value string papellidos = string.Empty; // TODO: Initialize to an appropriate value string pcedula = string.Empty; // TODO: Initialize to an appropriate value string ptelefonoCasa = string.Empty; // TODO: Initialize to an appropriate value string ptelefonoCelular = string.Empty; // TODO: Initialize to an appropriate value string pemail = string.Empty; // TODO: Initialize to an appropriate value int pnivelIngles = 0; // TODO: Initialize to an appropriate value double psalario = 0F; // TODO: Initialize to an appropriate value string pnivelProfesional = string.Empty; // TODO: Initialize to an appropriate value string pfuenteContacto = string.Empty; // TODO: Initialize to an appropriate value string plugarResidencia = string.Empty; // TODO: Initialize to an appropriate value int pidProvincia = 0; // TODO: Initialize to an appropriate value int pidCanton = 0; // TODO: Initialize to an appropriate value int pidDistrito = 0; // TODO: Initialize to an appropriate value DateTime pfechaInicio = new DateTime(); // TODO: Initialize to an appropriate value string pobservaciones = string.Empty; // TODO: Initialize to an appropriate value int pidReclutador = 0; // TODO: Initialize to an appropriate value string pEstado = string.Empty; // TODO: Initialize to an appropriate value target.registrarEmpleado(pnombre, papellidos, pcedula, ptelefonoCasa, ptelefonoCelular, pemail, pnivelIngles, psalario, pnivelProfesional, pfuenteContacto, plugarResidencia, pidProvincia, pidCanton, pidDistrito, pfechaInicio, pobservaciones, pidReclutador, pEstado); Assert.Inconclusive("A method that does not return a value cannot be verified."); }
public void registrarClienteTest() { GestorPlanilla target = new GestorPlanilla(); // TODO: Initialize to an appropriate value string pnombre = string.Empty; // TODO: Initialize to an appropriate value string ppersonacontacto = string.Empty; // TODO: Initialize to an appropriate value string pcorreo = string.Empty; // TODO: Initialize to an appropriate value string ptelefono = string.Empty; // TODO: Initialize to an appropriate value int pidPais = 0; // TODO: Initialize to an appropriate value target.registrarCliente(pnombre, ppersonacontacto, pcorreo, ptelefono, pidPais); Assert.Inconclusive("A method that does not return a value cannot be verified."); }
public void guardarCambiosTecnologiaTest() { GestorPlanilla target = new GestorPlanilla(); // TODO: Initialize to an appropriate value target.guardarCambiosTecnologia(); Assert.Inconclusive("A method that does not return a value cannot be verified."); }
public void getTecnologiasXEmpleadoTest() { GestorPlanilla target = new GestorPlanilla(); // TODO: Initialize to an appropriate value int pidTecnologia = 0; // TODO: Initialize to an appropriate value IEnumerable<Tecnologia> expected = null; // TODO: Initialize to an appropriate value IEnumerable<Tecnologia> actual; actual = target.getTecnologiasXEmpleado(pidTecnologia); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void getPaisesTest() { GestorPlanilla target = new GestorPlanilla(); // TODO: Initialize to an appropriate value List<ArrayList> expected = null; // TODO: Initialize to an appropriate value List<ArrayList> actual; actual = target.getPaises(); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void getIdUltimoEmpleadoRegistradoTest() { GestorPlanilla target = new GestorPlanilla(); // TODO: Initialize to an appropriate value int expected = 0; // TODO: Initialize to an appropriate value int actual; actual = target.getIdUltimoEmpleadoRegistrado(); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void registrarTecnologiasPorEmpleadoTest() { GestorPlanilla target = new GestorPlanilla(); // TODO: Initialize to an appropriate value int pidEmpleado = 0; // TODO: Initialize to an appropriate value int pidTecnologia = 0; // TODO: Initialize to an appropriate value string pnivelConocimiento = "F#"; target.registrarTecnologiasPorEmpleado(pidEmpleado, pidTecnologia, pnivelConocimiento); Assert.Inconclusive("A method that does not return a value cannot be verified."); }
public void eliminarProyectoTest() { GestorPlanilla target = new GestorPlanilla(); // TODO: Initialize to an appropriate value int pidProyecto = 0; // TODO: Initialize to an appropriate value target.eliminarProyecto(pidProyecto); Assert.Inconclusive("A method that does not return a value cannot be verified."); }
public void consultarTecnologiasPorProyectoPorIDTest() { GestorPlanilla target = new GestorPlanilla(); // TODO: Initialize to an appropriate value int pid = 0; // TODO: Initialize to an appropriate value IEnumerable<TecnologiasPorProyecto> expected = null; // TODO: Initialize to an appropriate value IEnumerable<TecnologiasPorProyecto> actual; actual = target.consultarTecnologiasPorProyectoPorID(pid); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void consultarCurriculoEmpleadoTest() { GestorPlanilla target = new GestorPlanilla(); // TODO: Initialize to an appropriate value int pidEmpleado = 0; // TODO: Initialize to an appropriate value Empleado expected = null; // TODO: Initialize to an appropriate value Empleado actual; actual = target.consultarCurriculoEmpleado(pidEmpleado); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void registrarProyectoTest() { GestorPlanilla target = new GestorPlanilla(); // TODO: Initialize to an appropriate value string pnombre = string.Empty; // TODO: Initialize to an appropriate value string pdescripcion = string.Empty; // TODO: Initialize to an appropriate value DateTime pfechaInicio = new DateTime(); // TODO: Initialize to an appropriate value DateTime pfechaFin = new DateTime(); // TODO: Initialize to an appropriate value string pestadoProyecto = string.Empty; // TODO: Initialize to an appropriate value int pidCliente = 0; // TODO: Initialize to an appropriate value target.registrarProyecto(pnombre, pdescripcion, pfechaInicio, pfechaFin, pestadoProyecto, pidCliente); Assert.Inconclusive("A method that does not return a value cannot be verified."); }
public void eliminarTecnologiaTest() { GestorPlanilla target = new GestorPlanilla(); // TODO: Initialize to an appropriate value int idTecnologia = 0; // TODO: Initialize to an appropriate value target.eliminarTecnologia(idTecnologia); Assert.Inconclusive("A method that does not return a value cannot be verified."); }
public void registrarTecnologiaPorProyectoTest() { GestorPlanilla target = new GestorPlanilla(); // TODO: Initialize to an appropriate value int pidProyecto = 0; // TODO: Initialize to an appropriate value int pidTecnologia = 0; // TODO: Initialize to an appropriate value target.registrarTecnologiaPorProyecto(pidProyecto, pidTecnologia); Assert.Inconclusive("A method that does not return a value cannot be verified."); }
public void GestorPlanillaConstructorTest() { GestorPlanilla target = new GestorPlanilla(); Assert.Inconclusive("TODO: Implement code to verify target"); }
public void registrarTecnologiaTest() { GestorPlanilla target = new GestorPlanilla(); // TODO: Initialize to an appropriate value string pnombre = string.Empty; // TODO: Initialize to an appropriate value string pdescripcion = string.Empty; // TODO: Initialize to an appropriate value int pidTecnologiaPadre = 0; // TODO: Initialize to an appropriate value target.registrarTecnologia(pnombre, pdescripcion, pidTecnologiaPadre); Assert.Inconclusive("A method that does not return a value cannot be verified."); }
public void descargarCurriculoTest() { GestorPlanilla target = new GestorPlanilla(); // TODO: Initialize to an appropriate value int pidCurriculo = 0; // TODO: Initialize to an appropriate value DataTable expected = null; // TODO: Initialize to an appropriate value DataTable actual; actual = target.descargarCurriculo(pidCurriculo); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }