using Microsoft.VisualStudio.TestTools.UnitTesting; using Renci.SshNet.Messages.Connection; using Renci.SshNet.Tests.Common; namespace Renci.SshNet.Tests.Classes.Messages.Connection { /// ///This is a test class for ChannelOpenInfoTest and is intended ///to contain all ChannelOpenInfoTest Unit Tests /// [TestClass] [Ignore] // placeholders only public class ChannelOpenInfoTest : TestBase { internal virtual ChannelOpenInfo CreateChannelOpenInfo() { // TODO: Instantiate an appropriate concrete class. ChannelOpenInfo target = null; return target; } /// ///A test for ChannelType /// [TestMethod()] public void ChannelTypeTest() { var target = CreateChannelOpenInfo(); // TODO: Initialize to an appropriate value var actual = target.ChannelType; Assert.Inconclusive("Verify the correctness of this test method."); } } }