From 5a0378f2f2b978485929d24c50fa972495abdc5e Mon Sep 17 00:00:00 2001 From: yankejustin Date: Thu, 21 May 2015 15:13:04 -0400 Subject: [PATCH] Removed useless test The information returned by constructing a GeoIP class is never null or empty. It will return information stating that the information is "unknown" or provide some type of default value. --- Client.Tests/Core/Information/GeoIP.Tests.cs | 21 -------------------- 1 file changed, 21 deletions(-) delete mode 100644 Client.Tests/Core/Information/GeoIP.Tests.cs diff --git a/Client.Tests/Core/Information/GeoIP.Tests.cs b/Client.Tests/Core/Information/GeoIP.Tests.cs deleted file mode 100644 index d210c31d..00000000 --- a/Client.Tests/Core/Information/GeoIP.Tests.cs +++ /dev/null @@ -1,21 +0,0 @@ -using Microsoft.VisualStudio.TestTools.UnitTesting; -using xClient.Core.Information; - - -namespace xClient.Tests.Core.Information -{ - [TestClass] - public class GeoIPTests - { - [TestMethod] - public void GetGeoIPTest() - { - var ipInformation = new GeoIP(); - Assert.IsNotNull(ipInformation.City); - Assert.IsNotNull(ipInformation.Country); - Assert.IsNotNull(ipInformation.CountryCode); - Assert.IsNotNull(ipInformation.Region); - Assert.IsNotNull(ipInformation.WanIp); - } - } -} \ No newline at end of file