public void TestListaCargos() { //Declaro test de tipo LogicaM10 para poder invocar el metodo "ItemsForListJobs()" theCargos = logicaM10.ItemsForListJobs(); //La prueba pasa el metodo retorna al menos 1 pais Assert.IsTrue(theCargos.Count > 0); }
private void FillSelectedListJob() { LogicaM10 componentes = new LogicaM10(); ; int x = 1; SelectedListJob.Items.Insert(0, "Seleccione un cargo"); foreach (Cargo cargos in componentes.ItemsForListJobs()) { elementos.Add(cargos.Nombre, cargos.Descripcion); SelectedListJob.Items.Insert(x, cargos.Nombre); x++; } }