本文整理汇总了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");
}