ZlibOpenSshTest.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. [Ignore] // placeholders only
  14. public class ZlibOpenSshTest : TestBase
  15. {
  16. /// <summary>
  17. ///A test for ZlibOpenSsh Constructor
  18. ///</summary>
  19. [TestMethod()]
  20. public void ZlibOpenSshConstructorTest()
  21. {
  22. ZlibOpenSsh target = new ZlibOpenSsh();
  23. Assert.Inconclusive("TODO: Implement code to verify target");
  24. }
  25. /// <summary>
  26. ///A test for Init
  27. ///</summary>
  28. [TestMethod()]
  29. public void InitTest()
  30. {
  31. ZlibOpenSsh target = new ZlibOpenSsh(); // TODO: Initialize to an appropriate value
  32. Session session = null; // TODO: Initialize to an appropriate value
  33. target.Init(session);
  34. Assert.Inconclusive("A method that does not return a value cannot be verified.");
  35. }
  36. /// <summary>
  37. ///A test for Name
  38. ///</summary>
  39. [TestMethod()]
  40. public void NameTest()
  41. {
  42. ZlibOpenSsh target = new ZlibOpenSsh(); // TODO: Initialize to an appropriate value
  43. string actual;
  44. actual = target.Name;
  45. Assert.Inconclusive("Verify the correctness of this test method.");
  46. }
  47. }
  48. }