Esempio n. 1
0
 public void Instance_is_initialized_correctly_without_ssl()
 {
     const bool enableSsl = false;
     Client = new FtpClient();
     Client.Connect(UserName, Password, ServerUri, enableSsl);
     Assert.AreEqual(enableSsl, Client.EnableSsl);
 }
Esempio n. 2
0
 public void Initialize()
 {
     Client = new FtpClient();
     Client.Connect(UserName, Password, ServerUri);
 }