ZlibOpenSshTest.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. using Renci.SshNet.Compression;
  2. using Microsoft.VisualStudio.TestTools.UnitTesting;
  3. using System;
  4. using Renci.SshNet;
  5. using Renci.SshNet.Tests.Common;
  6. namespace Renci.SshNet.Tests.Classes.Compression
  7. {
  8. /// <summary>
  9. ///This is a test class for ZlibOpenSshTest and is intended
  10. ///to contain all ZlibOpenSshTest Unit Tests
  11. ///</summary>
  12. [TestClass()]
  13. public class ZlibOpenSshTest : TestBase
  14. {
  15. /// <summary>
  16. ///A test for ZlibOpenSsh Constructor
  17. ///</summary>
  18. [TestMethod()]
  19. public void ZlibOpenSshConstructorTest()
  20. {
  21. ZlibOpenSsh target = new ZlibOpenSsh();
  22. Assert.Inconclusive("TODO: Implement code to verify target");
  23. }
  24. /// <summary>
  25. ///A test for Init
  26. ///</summary>
  27. [TestMethod()]
  28. public void InitTest()
  29. {
  30. ZlibOpenSsh target = new ZlibOpenSsh(); // TODO: Initialize to an appropriate value
  31. Session session = null; // TODO: Initialize to an appropriate value
  32. target.Init(session);
  33. Assert.Inconclusive("A method that does not return a value cannot be verified.");
  34. }
  35. /// <summary>
  36. ///A test for Name
  37. ///</summary>
  38. [TestMethod()]
  39. public void NameTest()
  40. {
  41. ZlibOpenSsh target = new ZlibOpenSsh(); // TODO: Initialize to an appropriate value
  42. string actual;
  43. actual = target.Name;
  44. Assert.Inconclusive("Verify the correctness of this test method.");
  45. }
  46. }
  47. }