Example #1
0
        public ActionResult EditTest01([PexAssumeUnderTest] RicetteController target, Ricette ricette)
        {
            ActionResult result = target.Edit(ricette);

            return(result);
            // TODO: aggiungere asserzioni a metodo RicetteControllerTest.EditTest01(RicetteController, Ricette)
        }
Example #2
0
        public ActionResult EditTest([PexAssumeUnderTest] RicetteController target, int?id)
        {
            ActionResult result = target.Edit(id);

            return(result);
            // TODO: aggiungere asserzioni a metodo RicetteControllerTest.EditTest(RicetteController, Nullable`1<Int32>)
        }
Example #3
0
        public ActionResult CreateTest([PexAssumeUnderTest] RicetteController target)
        {
            ActionResult result = target.Create();

            return(result);
            // TODO: aggiungere asserzioni a metodo RicetteControllerTest.CreateTest(RicetteController)
        }
Example #4
0
        public ActionResult DeleteConfirmedTest([PexAssumeUnderTest] RicetteController target, int id)
        {
            ActionResult result = target.DeleteConfirmed(id);

            return(result);
            // TODO: aggiungere asserzioni a metodo RicetteControllerTest.DeleteConfirmedTest(RicetteController, Int32)
        }
Example #5
0
        public RicetteController ConstructorTest()
        {
            RicetteController target = new RicetteController();

            return(target);
            // TODO: aggiungere asserzioni a metodo RicetteControllerTest.ConstructorTest()
        }