ChannelMessageTest.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  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 ChannelMessageTest and is intended
  8. ///to contain all ChannelMessageTest Unit Tests
  9. ///</summary>
  10. [TestClass]
  11. [Ignore] // placeholders only
  12. public class ChannelMessageTest : TestBase
  13. {
  14. internal virtual ChannelMessage CreateChannelMessage()
  15. {
  16. // TODO: Instantiate an appropriate concrete class.
  17. ChannelMessage target = null;
  18. return target;
  19. }
  20. /// <summary>
  21. ///A test for ToString
  22. ///</summary>
  23. [TestMethod()]
  24. public void ToStringTest()
  25. {
  26. var target = CreateChannelMessage(); // TODO: Initialize to an appropriate value
  27. var expected = string.Empty; // TODO: Initialize to an appropriate value
  28. var actual = target.ToString();
  29. Assert.AreEqual(expected, actual);
  30. Assert.Inconclusive("Verify the correctness of this test method.");
  31. }
  32. }
  33. }