Example #1
0
 public void consultarTecnologiasPorEmpleadoPorIDTest()
 {
     GestorPlanilla target = new GestorPlanilla(); // TODO: Initialize to an appropriate value
     int pid = 0; // TODO: Initialize to an appropriate value
     IEnumerable<TecnologiasPorEmpleado> expected = null; // TODO: Initialize to an appropriate value
     IEnumerable<TecnologiasPorEmpleado> actual;
     actual = target.consultarTecnologiasPorEmpleadoPorID(pid);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }