| 12345678910111213141516171819202122232425262728293031323334353637 | using Renci.SshNet.Messages.Connection;using Microsoft.VisualStudio.TestTools.UnitTesting;using System;using Renci.SshNet.Tests.Common;namespace Renci.SshNet.Tests.Classes.Messages.Connection{    /// <summary>    ///This is a test class for ChannelMessageTest and is intended    ///to contain all ChannelMessageTest Unit Tests    ///</summary>    [TestClass]    [Ignore] // placeholders only    public class ChannelMessageTest : TestBase    {        internal virtual ChannelMessage CreateChannelMessage()        {            // TODO: Instantiate an appropriate concrete class.            ChannelMessage target = null;            return target;        }        /// <summary>        ///A test for ToString        ///</summary>        [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.");        }    }}
 |