Пример #1
0
 public void PostTest()
 {
     WebServer webServer = new WebServer("http://mss.alkotorg.com");
     string username = "******";
     string password = "******";
     WebConnection target = new WebConnection(webServer, username, password); // TODO: Initialize to an appropriate value
     HttpWebRequest httpWebRequest = null; // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     actual = target.Post(httpWebRequest);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }