public void AnySmtpTesterConstructorTest1()
 {
     string host = string.Empty; // TODO: Initialize to an appropriate value
     int port = 0; // TODO: Initialize to an appropriate value
     bool enableSsl = false; // TODO: Initialize to an appropriate value
     string user = string.Empty; // TODO: Initialize to an appropriate value
     string password = string.Empty; // TODO: Initialize to an appropriate value
     var target = new AnySmtpTester(host, port, enableSsl, user, password);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void GetServerStatusTest()
 {
     SmtpClient smtpClient = null; // TODO: Initialize to an appropriate value
     var target = new AnySmtpTester(smtpClient); // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     actual = target.GetServerStatus();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void SendMessageTest()
 {
     SmtpClient smtpClient = null; // TODO: Initialize to an appropriate value
     var target = new AnySmtpTester(smtpClient); // TODO: Initialize to an appropriate value
     string from = string.Empty; // TODO: Initialize to an appropriate value
     string to = string.Empty; // TODO: Initialize to an appropriate value
     string subject = string.Empty; // TODO: Initialize to an appropriate value
     string body = string.Empty; // TODO: Initialize to an appropriate value
     object expected = null; // TODO: Initialize to an appropriate value
     object actual;
     actual = target.SendMessage(from, to, subject, body);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void AnySmtpTesterConstructorTest()
 {
     SmtpClient smtpClient = null; // TODO: Initialize to an appropriate value
     var target = new AnySmtpTester(smtpClient);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }