コード例 #1
0
        public void ValidResponse8()
        {
            ResponseServerCustom response = new ResponseServerCustom
            {
                ResponseCode = 999
            };

            response = ValidateSettings <ResponseServerCustom> .Validate(response);
        }
コード例 #2
0
        public void InvalidResponse3()
        {
            ResponseServerCustom response = new ResponseServerCustom
            {
                ResponseCode = 502
            };

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