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

TestGoogleGeocoderInvokeMultipleResponse() private method

private TestGoogleGeocoderInvokeMultipleResponse ( ) : void
return void
        public void TestGoogleGeocoderInvokeMultipleResponse()
        {
            Console.WriteLine("Test - Google Geocoder Invoke Multiple Response");
            GeocodeRequest gr = new GeocodeRequest();
            gr.TextString = "600 12th St., Philadelphia PA";

            GeocodeResponse gRes = _googleGeocoder.Geocode(gr);
            TestUtils.OutputGeocodeResponses(gRes);
            Assert.Greater(gRes.Count, 1, "Google Geocoder returned fewer than 2 responses");
        }