public void TestFindClosestCounty()
        {
            var address = Address.Search("East Lansing, MI").First();

            address.GeocodeAddress();

            // This might seem wrong but it is the closest county geocode
            Assert.AreEqual("Eaton", CountyList.FindClosestCounty(address.Geocode).Name);
        }