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

TestGoogleGeocoderInvokeNotText() private method

private TestGoogleGeocoderInvokeNotText ( ) : void
return void
        public void TestGoogleGeocoderInvokeNotText()
        {
            Console.WriteLine("Test - Google Geocoder Invoke Not Text");
            GeocodeRequest gr = new GeocodeRequest();
            gr.Address = "340 N 12th St.";
            gr.City = "Philadelphia";
            gr.State = "PA";

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