ScpDownloadEventArgsTest.cs 1016 B

123456789101112131415161718192021222324252627
  1. using Microsoft.VisualStudio.TestTools.UnitTesting;
  2. using Renci.SshNet.Common;
  3. using Renci.SshNet.Tests.Common;
  4. namespace Renci.SshNet.Tests.Classes.Common
  5. {
  6. /// <summary>
  7. ///This is a test class for ScpDownloadEventArgsTest and is intended
  8. ///to contain all ScpDownloadEventArgsTest Unit Tests
  9. ///</summary>
  10. [TestClass]
  11. public class ScpDownloadEventArgsTest : TestBase
  12. {
  13. /// <summary>
  14. ///A test for ScpDownloadEventArgs Constructor
  15. ///</summary>
  16. [TestMethod]
  17. public void ScpDownloadEventArgsConstructorTest()
  18. {
  19. string filename = string.Empty; // TODO: Initialize to an appropriate value
  20. long size = 0; // TODO: Initialize to an appropriate value
  21. long downloaded = 0; // TODO: Initialize to an appropriate value
  22. ScpDownloadEventArgs target = new ScpDownloadEventArgs(filename, size, downloaded);
  23. Assert.Inconclusive("TODO: Implement code to verify target");
  24. }
  25. }
  26. }