2
0

ScpUploadEventArgsTest.cs 998 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 ScpUploadEventArgsTest and is intended
  8. ///to contain all ScpUploadEventArgsTest Unit Tests
  9. ///</summary>
  10. [TestClass]
  11. public class ScpUploadEventArgsTest : TestBase
  12. {
  13. /// <summary>
  14. ///A test for ScpUploadEventArgs Constructor
  15. ///</summary>
  16. [TestMethod]
  17. public void ScpUploadEventArgsConstructorTest()
  18. {
  19. string filename = string.Empty; // TODO: Initialize to an appropriate value
  20. long size = 0; // TODO: Initialize to an appropriate value
  21. long uploaded = 0; // TODO: Initialize to an appropriate value
  22. ScpUploadEventArgs target = new ScpUploadEventArgs(filename, size, uploaded);
  23. Assert.Inconclusive("TODO: Implement code to verify target");
  24. }
  25. }
  26. }