ArcGISHealthStatus.Tests.HTTPCheck.HTTPCheckerTestes.TestGeometryService C# (CSharp) Method

TestGeometryService() private method

private TestGeometryService ( ) : void
return void
        public void TestGeometryService()
        {
            var httpService = new HTTPService()
            {
                Type = "Test",
                Name = "TestName",
                Url = "http://srvwindev07/ArcGIS/rest/services/Geometry/GeometryServer/project?inSR=4326&outSR=102100&geometries=%7B%22geometryType%22+%3A+%22esriGeometryPoint%22%2C%22geometries%22%3A%5B+%7B%22x%22+%3A+-63.53%2C+%22y%22+%3A+10.23%7D%5D%7D&f=json"
            };

            var httpServices = new List<HTTPService> { httpService };

            var servicesStatus = httpChecker.CheckHTTPServices(httpServices);
            servicesStatus.Count.Should().Be(1);
            servicesStatus[0].Status.Should().Be("ON");
            servicesStatus[0].Error.Should().Be.Null();
        }