Esempio n. 1
0
        public void ValidResponse3()
        {
            ResponseClientError response = new ResponseClientError
            {
                ResponseCode = 404
            };

            response = ValidateSettings <ResponseClientError> .Validate(response);
        }
Esempio n. 2
0
        public void InvalidResponse2()
        {
            ResponseClientError response = new ResponseClientError
            {
                ResponseCode = 200
            };

            response = ValidateSettings <ResponseClientError> .Validate(response);
        }