Esempio n. 1
0
        public void ScpDownloadEventArgsConstructorTest()
        {
            string filename             = string.Empty; // TODO: Initialize to an appropriate value
            long   size                 = 0;            // TODO: Initialize to an appropriate value
            long   downloaded           = 0;            // TODO: Initialize to an appropriate value
            ScpDownloadEventArgs target = new ScpDownloadEventArgs(filename, size, downloaded);

            Assert.Inconclusive("TODO: Implement code to verify target");
        }
Esempio n. 2
0
 private void ScpClient_Downloading(object sender, ScpDownloadEventArgs e)
 {
     Debug("Scp client downloaded {0} of {1} bytes for file {2}.", e.Downloaded, e.Size, e.Filename);
 }