ScpUploadEventArgsTest.cs 1016 B

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