Ejemplo n.º 1
0
        public ActionResult DeleteTest([PexAssumeUnderTest] DevolucionController target, int?id)
        {
            ActionResult result = target.Delete(id);

            return(result);
            // TODO: agregar aserciones a método DevolucionControllerTest.DeleteTest(DevolucionController, Nullable`1<Int32>)
        }
Ejemplo n.º 2
0
 private void EliminaDevolucion()
 {
     if (devolucion != null)
     {
         devolucionController.DeletePartidas(devolucion);
         devolucionController.Delete(devolucion);
     }
 }