Пример #1
0
        public void SFTP_should_Be_Loged_InFtp()
        {
            var SUT  = _ftp.CreateCredential("");
            var SUT2 = _ftp.DirectoryListSimple("");

            SUT.RequestUri.Should().NotBeNull();
            SUT.RequestUri.Host.Should().NotBeNull();
            SUT.RequestUri.AbsoluteUri.ToUpper().Should().Contain("FTP");

            SUT2.Should().NotBeNullOrEmpty();
            SUT2.Length.Should().BeGreaterThan(0);
        }