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 ChannelFailureMessageTest and is intended ///to contain all ChannelFailureMessageTest Unit Tests /// [TestClass()] public class ChannelFailureMessageTest : TestBase { /// ///A test for ChannelFailureMessage Constructor /// [TestMethod()] public void ChannelFailureMessageConstructorTest() { ChannelFailureMessage target = new ChannelFailureMessage(); Assert.Inconclusive("TODO: Implement code to verify target"); } /// ///A test for ChannelFailureMessage Constructor /// [TestMethod()] public void ChannelFailureMessageConstructorTest1() { uint localChannelNumber = 0; // TODO: Initialize to an appropriate value ChannelFailureMessage target = new ChannelFailureMessage(localChannelNumber); Assert.Inconclusive("TODO: Implement code to verify target"); } } }