using Microsoft.VisualStudio.TestTools.UnitTesting;
using Renci.SshNet.Messages.Connection;
using Renci.SshNet.Tests.Common;
namespace Renci.SshNet.Tests.Classes.Messages.Connection
{
    /// 
    /// Represents SSH_MSG_CHANNEL_REQUEST message.
    /// 
    [TestClass]
    [Ignore] // placeholders only
    public class ChannelRequestMessageTest : TestBase
    {
        /// 
        ///A test for ChannelRequestMessage Constructor
        ///
        [TestMethod()]
        public void ChannelRequestMessageConstructorTest()
        {
            ChannelRequestMessage target = new ChannelRequestMessage();
            Assert.Inconclusive("TODO: Implement code to verify target");
        }
        /// 
        ///A test for ChannelRequestMessage Constructor
        ///
        [TestMethod()]
        public void ChannelRequestMessageConstructorTest1()
        {
            uint localChannelName = 0; // TODO: Initialize to an appropriate value
            RequestInfo info = null; // TODO: Initialize to an appropriate value
            ChannelRequestMessage target = new ChannelRequestMessage(localChannelName, info);
            Assert.Inconclusive("TODO: Implement code to verify target");
        }
    }
}