Exemplo n.º 1
0
 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.");
 }
Exemplo n.º 2
0
 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.");
 }
Exemplo n.º 3
0
 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.");
 }
Exemplo n.º 4
0
 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.");
 }
Exemplo n.º 5
0
 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.");
 }
Exemplo n.º 6
0
 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.");
 }
Exemplo n.º 7
0
 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.");
 }
Exemplo n.º 8
0
 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.");
 }
Exemplo n.º 9
0
 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.");
 }
Exemplo n.º 10
0
 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.");
 }
Exemplo n.º 11
0
 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.");
 }
Exemplo n.º 12
0
 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.");
 }
Exemplo n.º 13
0
 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.");
 }
Exemplo n.º 14
0
 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.");
 }
Exemplo n.º 15
0
 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.");
 }
Exemplo n.º 16
0
 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.");
 }
Exemplo n.º 17
0
 public void GestorPlanillaConstructorTest()
 {
     GestorPlanilla target = new GestorPlanilla();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
Exemplo n.º 18
0
 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.");
 }
Exemplo n.º 19
0
 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.");
 }