using Renci.SshNet.Messages.Connection;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using Renci.SshNet.Tests.Common;
namespace Renci.SshNet.Tests.Classes.Messages.Connection
{
    /// 
    ///This is a test class for ChannelMessageTest and is intended
    ///to contain all ChannelMessageTest Unit Tests
    ///
    [TestClass]
    [Ignore] // placeholders only
    public class ChannelMessageTest : TestBase
    {
        internal virtual ChannelMessage CreateChannelMessage()
        {
            // TODO: Instantiate an appropriate concrete class.
            ChannelMessage target = null;
            return target;
        }
        /// 
        ///A test for ToString
        ///
        [TestMethod()]
        public void ToStringTest()
        {
            ChannelMessage target = CreateChannelMessage(); // TODO: Initialize to an appropriate value
            string expected = string.Empty; // TODO: Initialize to an appropriate value
            string actual;
            actual = target.ToString();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
    }
}