Beispiel #1
0
        public void InvalidUriEndpoint()
        {
            UriEndpointTest test = new UriEndpointTest()
            {
                Value = "http://www.thereshouldbenodomainhere.com"
            };

            test = ValidateSettings <UriEndpointTest> .Validate(test);
        }
Beispiel #2
0
        public void ValidUriEndpoint()
        {
            UriEndpointTest test = new UriEndpointTest()
            {
                Value = "http://www.google.com"
            };

            test = ValidateSettings <UriEndpointTest> .Validate(test);
        }