public void TestConversion()
 {
     Location location = new Location() { Latitude = LocationTests.TestLatitude, Longitude = LocationTests.TestLongitude };
     GeoCoordinate coord = location.ToGeoCoordinate();
     Assert.AreEqual(location.Latitude, coord.Latitude, "Expected same Latitude");
     Assert.AreEqual(location.Longitude, coord.Longitude, "Expected same Longitude");
 }