ChannelOpenConfirmationMessageTest.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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 ChannelOpenConfirmationMessageTest and is intended
  9. ///to contain all ChannelOpenConfirmationMessageTest Unit Tests
  10. ///</summary>
  11. [TestClass()]
  12. public class ChannelOpenConfirmationMessageTest : TestBase
  13. {
  14. /// <summary>
  15. ///A test for ChannelOpenConfirmationMessage Constructor
  16. ///</summary>
  17. [TestMethod()]
  18. public void ChannelOpenConfirmationMessageConstructorTest()
  19. {
  20. ChannelOpenConfirmationMessage target = new ChannelOpenConfirmationMessage();
  21. Assert.Inconclusive("TODO: Implement code to verify target");
  22. }
  23. /// <summary>
  24. ///A test for ChannelOpenConfirmationMessage Constructor
  25. ///</summary>
  26. [TestMethod()]
  27. public void ChannelOpenConfirmationMessageConstructorTest1()
  28. {
  29. uint localChannelNumber = 0; // TODO: Initialize to an appropriate value
  30. uint initialWindowSize = 0; // TODO: Initialize to an appropriate value
  31. uint maximumPacketSize = 0; // TODO: Initialize to an appropriate value
  32. uint remoteChannelNumber = 0; // TODO: Initialize to an appropriate value
  33. ChannelOpenConfirmationMessage target = new ChannelOpenConfirmationMessage(localChannelNumber, initialWindowSize, maximumPacketSize, remoteChannelNumber);
  34. Assert.Inconclusive("TODO: Implement code to verify target");
  35. }
  36. }
  37. }