public void ValidResponse4() { ResponseServerError response = new ResponseServerError { ResponseCode = 500 }; response = ValidateSettings <ResponseServerError> .Validate(response); }
public void InvalidResponse1() { ResponseServerError response = new ResponseServerError { ResponseCode = 404 }; response = ValidateSettings <ResponseServerError> .Validate(response); }