| 12345678910111213141516171819202122232425262728 | using Renci.SshNet.Common;using Microsoft.VisualStudio.TestTools.UnitTesting;using System;using Renci.SshNet.Tests.Common;namespace Renci.SshNet.Tests.Classes.Common{    /// <summary>    ///This is a test class for ScpDownloadEventArgsTest and is intended    ///to contain all ScpDownloadEventArgsTest Unit Tests    ///</summary>    [TestClass()]    public class ScpDownloadEventArgsTest : TestBase    {        /// <summary>        ///A test for ScpDownloadEventArgs Constructor        ///</summary>        [TestMethod()]        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");        }    }}
 |