public void CheckTestHttpChecker()
        {
            string      host     = "http://www.ezysend.com";       // TODO: Initialize to an appropriate value
            int         port     = 80;                             // TODO: Initialize to an appropriate value
            HttpChecker target   = new HttpChecker(new Uri(host)); // TODO: Initialize to an appropriate value
            CheckResult expected = null;                           // TODO: Initialize to an appropriate value
            CheckResult actual;

            actual = target.Check();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
 public void Upload(string i_CheckType)
 {
     if (i_CheckType == "WEB")
     {
         HttpChecker.Upload();
     }
     else if (i_CheckType == "PING")
     {
         PingChecker.Upload();
     }
     else
     {
         PortChecker.Upload();
     }
 }