public void GetLocalhost() { LocationService lookupService = new LocationService(); TheInternetBuzz.Data.Location.Location location = lookupService.GetLocation("127.0.0.1"); Assert.That(location != null); Assert.That(location.city == "Vancouver"); }
public void GetShawIP() { LocationService lookupService = new LocationService(); TheInternetBuzz.Data.Location.Location location = lookupService.GetLocation("174.7.104.186"); Assert.That(location != null); Console.WriteLine(location.city); Assert.That(location.city == "North Vancouver"); }