AWSSDK_DotNet35.UnitTests.Marshalling.ShieldMarshallingTests.CreateProtectionMarshallTest C# (CSharp) Метод

CreateProtectionMarshallTest() приватный Метод

private CreateProtectionMarshallTest ( ) : void
Результат void
        public void CreateProtectionMarshallTest()
        {
            var request = InstantiateClassGenerator.Execute<CreateProtectionRequest>();
            var marshaller = new CreateProtectionRequestMarshaller();

            var internalRequest = marshaller.Marshall(request);
            var jsonRequest = UTF8Encoding.UTF8.GetString(internalRequest.Content);                        
            Comparer.CompareObjectToJson<CreateProtectionRequest>(request,jsonRequest);

            var webResponse = new WebResponseData
            {
                Headers = {
                    {"x-amzn-RequestId", Guid.NewGuid().ToString()},
                    {"x-amz-crc32","0"}
                }
            };
            var jsonResponse = new JsonSampleGenerator(service_model, service_model.FindOperation("CreateProtection").ResponseStructure).Execute();
            webResponse.Headers.Add("Content-Length", UTF8Encoding.UTF8.GetBytes(jsonResponse).Length.ToString());
            UnmarshallerContext context = new JsonUnmarshallerContext(Utils.CreateStreamFromString(jsonResponse), false, webResponse);
            var response = CreateProtectionResponseUnmarshaller.Instance.Unmarshall(context)
                as CreateProtectionResponse;
            InstantiateClassGenerator.ValidateObjectFullyInstantiated(response);
        }