Example #1
0
        //
        // You can use the following additional attributes as you write your tests:
        //
        // Use ClassInitialize to run code before running the first test in the class
        // [ClassInitialize()]
        // public static void MyClassInitialize(TestContext testContext) { }
        //
        // Use ClassCleanup to run code after all tests in a class have run
        // [ClassCleanup()]
        // public static void MyClassCleanup() { }
        //
        // Use TestInitialize to run code before running each test
        // [TestInitialize()]
        // public void MyTestInitialize() { }
        //
        // Use TestCleanup to run code after each test has run
        // [TestCleanup()]
        // public void MyTestCleanup() { }
        //
        #endregion

        private Reply <TestObjectWithProperties> TestIntRequestMethod(Request <int> request)
        {
            var rplyData = new TestObjectWithProperties();
            var rply     = new Reply <TestObjectWithProperties>();

            rply.ReplyData = rplyData;
            for (int i = 0; i < nbrOfInfoItems; i++)
            {
                rply.AddOpStatusItem(rply.InfoItems, new OpStatusItem("property:" + i.ToString(), "property:" + i.ToString(), "code:" + i.ToString(), "msg: " + i.ToString(), false));
            }
            for (int i = 0; i < nbrOfWarnings; i++)
            {
                rply.AddOpStatusItem(rply.Warnings, new OpStatusItem("property:" + i.ToString(), "property:" + i.ToString(), "code:" + i.ToString(), "msg: " + i.ToString(), false));
            }
            for (int i = 0; i < nbrOfErrors; i++)
            {
                rply.AddOpStatusItem(rply.Errors, new OpStatusItem("property:" + i.ToString(), "property:" + i.ToString(), "code:" + i.ToString(), "msg: " + i.ToString(), false));
            }
            return(rply);
        }
 private Reply<TestObjectWithProperties> TestIntRequestMethod(Request<int> request)
 {
     var rplyData	= new TestObjectWithProperties();
     var rply		= new Reply<TestObjectWithProperties>();
     rply.ReplyData	= rplyData;
     for (int i = 0; i < nbrOfInfoItems; i++)
     {
         rply.AddOpStatusItem(rply.InfoItems, new OpStatusItem("property:" +  i.ToString(), "property:" +  i.ToString(), "code:" + i.ToString(), "msg: " + i.ToString(), false));
     }
     for (int i = 0; i < nbrOfWarnings; i++)
     {
         rply.AddOpStatusItem(rply.Warnings, new OpStatusItem("property:" +  i.ToString(), "property:" +  i.ToString(), "code:" + i.ToString(), "msg: " + i.ToString(), false));
     }
     for (int i = 0; i < nbrOfErrors; i++)
     {
         rply.AddOpStatusItem(rply.Errors, new OpStatusItem("property:" +  i.ToString(), "property:" +  i.ToString(), "code:" + i.ToString(), "msg: " + i.ToString(), false));
     }
     return rply;
 }