コード例 #1
0
        public ActionResult EditTest01([PexAssumeUnderTest] MaltisController target, Malti malti)
        {
            ActionResult result = target.Edit(malti);

            return(result);
            // TODO: aggiungere asserzioni a metodo MaltisControllerTest.EditTest01(MaltisController, Malti)
        }
コード例 #2
0
        public ActionResult EditTest([PexAssumeUnderTest] MaltisController target, int?id)
        {
            ActionResult result = target.Edit(id);

            return(result);
            // TODO: aggiungere asserzioni a metodo MaltisControllerTest.EditTest(MaltisController, Nullable`1<Int32>)
        }
コード例 #3
0
        public ActionResult CreateTest([PexAssumeUnderTest] MaltisController target)
        {
            ActionResult result = target.Create();

            return(result);
            // TODO: aggiungere asserzioni a metodo MaltisControllerTest.CreateTest(MaltisController)
        }
コード例 #4
0
        public ActionResult DeleteConfirmedTest([PexAssumeUnderTest] MaltisController target, int id)
        {
            ActionResult result = target.DeleteConfirmed(id);

            return(result);
            // TODO: aggiungere asserzioni a metodo MaltisControllerTest.DeleteConfirmedTest(MaltisController, Int32)
        }
コード例 #5
0
        public MaltisController ConstructorTest()
        {
            MaltisController target = new MaltisController();

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