Azavea.Open.Geocoding.Google.Tests.GoogleTests.TestGoogleGeocoderInvokeMultipleResponse C# (CSharp) 메소드

TestGoogleGeocoderInvokeMultipleResponse() 개인적인 메소드

private TestGoogleGeocoderInvokeMultipleResponse ( ) : void
리턴 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");
        }