Ejemplo n.º 1
0
        public ActionResult IndexTest([PexAssumeUnderTest] CuentaBancoController target)
        {
            ActionResult result = target.Index();

            return(result);
            // TODO: add assertions to method CuentaBancoControllerTest.IndexTest(CuentaBancoController)
        }
Ejemplo n.º 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)
        }
Ejemplo n.º 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)
        }
Ejemplo n.º 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>)
        }
Ejemplo n.º 5
0
        public CuentaBancoController ConstructorTest()
        {
            CuentaBancoController target = new CuentaBancoController();

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