ChannelOpenInfoTest.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. using Renci.SshNet.Messages.Connection;
  2. using Microsoft.VisualStudio.TestTools.UnitTesting;
  3. using System;
  4. using Renci.SshNet.Tests.Common;
  5. namespace Renci.SshNet.Tests.Classes.Messages.Connection
  6. {
  7. /// <summary>
  8. ///This is a test class for ChannelOpenInfoTest and is intended
  9. ///to contain all ChannelOpenInfoTest Unit Tests
  10. ///</summary>
  11. [TestClass]
  12. [Ignore] // placeholders only
  13. public class ChannelOpenInfoTest : TestBase
  14. {
  15. internal virtual ChannelOpenInfo CreateChannelOpenInfo()
  16. {
  17. // TODO: Instantiate an appropriate concrete class.
  18. ChannelOpenInfo target = null;
  19. return target;
  20. }
  21. /// <summary>
  22. ///A test for ChannelType
  23. ///</summary>
  24. [TestMethod()]
  25. public void ChannelTypeTest()
  26. {
  27. ChannelOpenInfo target = CreateChannelOpenInfo(); // TODO: Initialize to an appropriate value
  28. string actual;
  29. actual = target.ChannelType;
  30. Assert.Inconclusive("Verify the correctness of this test method.");
  31. }
  32. }
  33. }