Example #1
0
        public result GetTest01([PexAssumeUnderTest] F2CController target, int fValue)
        {
            result result = target.Get(fValue);

            return(result);
            // TODO: add assertions to method F2CControllerTest.GetTest01(F2CController, Int32)
        }
Example #2
0
        public IEnumerable <string> GetTest([PexAssumeUnderTest] F2CController target)
        {
            IEnumerable <string> result = target.Get();

            return(result);
            // TODO: add assertions to method F2CControllerTest.GetTest(F2CController)
        }
Example #3
0
        public void GetTest()
        {
            int    result = 0;
            string c      = _ctrl.Get(32).ToString();

            Assert.IsTrue(c == result.ToString());
            F2CController ctrl = new F2CController();
            //Assert.AreEqual(0, ctrl.Get(32));
        }
Example #4
0
 public void PutTest(
     [PexAssumeUnderTest] F2CController target,
     int id,
     string value
     )
 {
     target.Put(id, value);
     // TODO: add assertions to method F2CControllerTest.PutTest(F2CController, Int32, String)
 }
Example #5
0
 public void PostTest([PexAssumeUnderTest] F2CController target, string value)
 {
     target.Post(value);
     // TODO: add assertions to method F2CControllerTest.PostTest(F2CController, String)
 }
Example #6
0
 public void DeleteTest([PexAssumeUnderTest] F2CController target, int id)
 {
     target.Delete(id);
     // TODO: add assertions to method F2CControllerTest.DeleteTest(F2CController, Int32)
 }