當前位置: 首頁>>代碼示例>>C#>>正文


C# Script.Serialization.JavaScriptSerializer.IndexOf方法代碼示例

本文整理匯總了C#中System.Web.Script.Serialization.JavaScriptSerializer.IndexOf方法的典型用法代碼示例。如果您正苦於以下問題:C# Script.Serialization.JavaScriptSerializer.IndexOf方法的具體用法?C# Script.Serialization.JavaScriptSerializer.IndexOf怎麽用?C# Script.Serialization.JavaScriptSerializer.IndexOf使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.Web.Script.Serialization.JavaScriptSerializer的用法示例。


在下文中一共展示了Script.Serialization.JavaScriptSerializer.IndexOf方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: TestReturnValue

        //Tests the value returned by the LoadVideoMgmt method
        private void TestReturnValue(ActionResult result, string expectedMrdvrResult, string expectedDeviceActionResponse)
        {
            //Assert
            Assert.IsTrue(result != null, "result is null");

            //A partial view result is returned
            var resultPartial = result as PartialViewResult;
            Assert.IsTrue(resultPartial != null, "resultPartial is null");

            //It was the right type of partial view result
            Assert.IsTrue(resultPartial.ViewName.Equals("VideoManagement_Partial"),
                "Expected resultPartial.ViewName to be VideoManagement_Partial. It was actually "
                + resultPartial.ViewName + ".");

            //It has the correct information

            //Model is not null
            var model = resultPartial.Model;
            Assert.IsNotNull(model);

            //Model response is correct
            var modelResponse = model.ToJSON();
            string modelResponseString = new JavaScriptSerializer().Serialize(modelResponse);
            modelResponseString = modelResponseString.Replace(@"\", " ");
            modelResponseString = modelResponseString.Replace(@"""", @" ");
            Assert.IsTrue(modelResponseString.Contains(expectedMrdvrResult), "MRDVR Service was not found");

            //Compare the expected DeviceActionResponse
            int startResponse = modelResponseString.IndexOf("DeviceActionResponse", System.StringComparison.Ordinal);
            int endResponse = modelResponseString.IndexOf("NewDeviceSerial", System.StringComparison.Ordinal);
            string actualDeviceResponse = modelResponseString.Substring(startResponse, (endResponse - startResponse) - 1);

            Assert.IsTrue(modelResponseString.Contains(expectedDeviceActionResponse), "DeviceActionResponse had an unexpected value. Expected: " +
               expectedDeviceActionResponse + ", Actual: " + actualDeviceResponse + ".");

            //Model is correct type
            Assert.IsTrue(model is VideoManagementModel, "Model is not a VideoManagementModel as expected");
        }
開發者ID:borealwinter,項目名稱:simpl,代碼行數:39,代碼來源:VideoDeviceControllerTest.cs


注:本文中的System.Web.Script.Serialization.JavaScriptSerializer.IndexOf方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。