Exemple #1
0
        public ActionResult IndexTest([PexAssumeUnderTest] CuentaBancoController target)
        {
            ActionResult result = target.Index();

            return(result);
            // TODO: add assertions to method CuentaBancoControllerTest.IndexTest(CuentaBancoController)
        }
Exemple #2
0
        public ActionResult EditTest01([PexAssumeUnderTest] CuentaBancoController target, tbCuentasBanco CuentasBanco)
        {
            ActionResult result = target.Edit(CuentasBanco);

            return(result);
            // TODO: add assertions to method CuentaBancoControllerTest.EditTest01(CuentaBancoController, tbCuentasBanco)
        }
Exemple #3
0
        public ActionResult DeleteConfirmedTest([PexAssumeUnderTest] CuentaBancoController target, short id)
        {
            ActionResult result = target.DeleteConfirmed(id);

            return(result);
            // TODO: add assertions to method CuentaBancoControllerTest.DeleteConfirmedTest(CuentaBancoController, Int16)
        }
Exemple #4
0
        public ActionResult EditTest([PexAssumeUnderTest] CuentaBancoController target, short?id)
        {
            ActionResult result = target.Edit(id);

            return(result);
            // TODO: add assertions to method CuentaBancoControllerTest.EditTest(CuentaBancoController, Nullable`1<Int16>)
        }
Exemple #5
0
        public CuentaBancoController ConstructorTest()
        {
            CuentaBancoController target = new CuentaBancoController();

            return(target);
            // TODO: add assertions to method CuentaBancoControllerTest.ConstructorTest()
        }