Azavea.Open.Geocoding.Google.Tests.GoogleTests.TestGoogleGeocoderHeirarchyProblemAddress C# (CSharp) Method

TestGoogleGeocoderHeirarchyProblemAddress() private method

private TestGoogleGeocoderHeirarchyProblemAddress ( ) : void
return void
        public void TestGoogleGeocoderHeirarchyProblemAddress()
        {
            Console.WriteLine("Test - Google Heirarchy Problem Address");
            GeocodeRequest gr = new GeocodeRequest();
            gr.TextString = "118 Blakely Rd at Lakeshore Drive Colchester VT US ";

            GeocodeResponse gRes = _googleGeocoder.Geocode(gr);
            TestUtils.OutputGeocodeResponses(gRes);
            Assert.IsTrue(gRes.HasCandidates, "Google Geocoder returned no responses");
        }