KeepAliveRequestInfoTest.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using Microsoft.VisualStudio.TestTools.UnitTesting;
  2. using Renci.SshNet.Messages.Connection;
  3. using Renci.SshNet.Tests.Common;
  4. namespace Renci.SshNet.Tests.Classes.Messages.Connection
  5. {
  6. /// <summary>
  7. ///This is a test class for KeepAliveRequestInfoTest and is intended
  8. ///to contain all KeepAliveRequestInfoTest Unit Tests
  9. ///</summary>
  10. [TestClass]
  11. public class KeepAliveRequestInfoTest : TestBase
  12. {
  13. /// <summary>
  14. ///A test for KeepAliveRequestInfo Constructor
  15. ///</summary>
  16. [TestMethod]
  17. [Ignore] // placeholder
  18. public void KeepAliveRequestInfoConstructorTest()
  19. {
  20. var target = new KeepAliveRequestInfo();
  21. Assert.Inconclusive("TODO: Implement code to verify target");
  22. }
  23. /// <summary>
  24. ///A test for RequestName
  25. ///</summary>
  26. [TestMethod]
  27. [Ignore] // placeholder
  28. public void RequestNameTest()
  29. {
  30. var target = new KeepAliveRequestInfo(); // TODO: Initialize to an appropriate value
  31. var actual = target.RequestName;
  32. Assert.Inconclusive("Verify the correctness of this test method.");
  33. }
  34. }
  35. }