Ejemplo n.º 1
0
        public void ExamResultUploadToSubmitNewTest()
        {
            ExamService         target     = new ExamService();         // TODO: Initialize to an appropriate value
            string              groupId    = "140610115925558";         // TODO: Initialize to an appropriate value
            string              userId     = "130923093821787";         // TODO: Initialize to an appropriate value
            Nullable <DateTime> expireDate = new Nullable <DateTime>(); // TODO: Initialize to an appropriate value

            expireDate = Convert.ToDateTime(String.Format("{0:dd/MM/yyyy}", "10/6/2557"));
            string TestingNo = "570242";                                    // TODO: Initialize to an appropriate value
            ResponseMessage <bool> expected = new ResponseMessage <bool>(); // TODO: Initialize to an appropriate value

            expected.ResultMessage = true;
            ResponseMessage <bool> actual;

            actual = target.ExamResultUploadToSubmitNew(groupId, userId, expireDate, TestingNo);
            Assert.AreEqual(expected.ResultMessage, actual.ResultMessage);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }