Ejemplo n.º 1
0
        public void ValidResponse4()
        {
            ResponseServerError response = new ResponseServerError
            {
                ResponseCode = 500
            };

            response = ValidateSettings <ResponseServerError> .Validate(response);
        }
Ejemplo n.º 2
0
        public void InvalidResponse1()
        {
            ResponseServerError response = new ResponseServerError
            {
                ResponseCode = 404
            };

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