ChannelMessageTest.cs 1.2 KB

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