Example #1
0
        public void CheckServerTest_LocalTest()
        {
            var a = ServerUtilities.SendPing("localhost");

            Assert.AreEqual("Online", a.Status);
        }
Example #2
0
        public void CheckServerTest_ToOfflineHost()
        {
            var a = ServerUtilities.SendPing("10.0.0.50");

            Assert.AreEqual("Offline", a.Status);
        }
Example #3
0
        public void CheckServerTest_GoogleTest()
        {
            var a = ServerUtilities.SendPing("google.com");

            Assert.AreEqual("Online", a.Status);
        }