public ActionResult EditTest([PexAssumeUnderTest] ListaPreciosController target, int?id)
        {
            ActionResult result = target.Edit(id);

            return(result);
            // TODO: agregar aserciones a método ListaPreciosControllerTest.EditTest(ListaPreciosController, Nullable`1<Int32>)
        }
        public ActionResult EditTest01([PexAssumeUnderTest] ListaPreciosController target, tbListaPrecio tbListaPrecio)
        {
            ActionResult result = target.Edit(tbListaPrecio);

            return(result);
            // TODO: agregar aserciones a método ListaPreciosControllerTest.EditTest01(ListaPreciosController, tbListaPrecio)
        }