Beispiel #1
0
        public void GetCountrySaudiTest()
        {
            var res = GeoLocator.GetCountry("45.135.115.234");

            Assert.True(res.Country.IsoCode == "SA", $"Country are Incorrect -> {res.Country.IsoCode}");
        }
Beispiel #2
0
        public void GetCountryEgyptTest()
        {
            var res = GeoLocator.GetCountry("156.205.192.88");

            Assert.True(res.Country.IsoCode == "EG", "Country are Incorrect");
        }