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>) }
private void EliminaDevolucion() { if (devolucion != null) { devolucionController.DeletePartidas(devolucion); devolucionController.Delete(devolucion); } }