| 1234567891011121314151617181920212223242526272829303132333435363738 | 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 ChannelOpenFailureMessageTest and is intended    ///to contain all ChannelOpenFailureMessageTest Unit Tests    ///</summary>    [TestClass()]    public class ChannelOpenFailureMessageTest : TestBase    {        /// <summary>        ///A test for ChannelOpenFailureMessage Constructor        ///</summary>        [TestMethod()]        public void ChannelOpenFailureMessageConstructorTest()        {            ChannelOpenFailureMessage target = new ChannelOpenFailureMessage();            Assert.Inconclusive("TODO: Implement code to verify target");        }        /// <summary>        ///A test for ChannelOpenFailureMessage Constructor        ///</summary>        [TestMethod()]        public void ChannelOpenFailureMessageConstructorTest1()        {            uint localChannelNumber = 0; // TODO: Initialize to an appropriate value            string description = string.Empty; // TODO: Initialize to an appropriate value            uint reasonCode = 0; // TODO: Initialize to an appropriate value            ChannelOpenFailureMessage target = new ChannelOpenFailureMessage(localChannelNumber, description, reasonCode);            Assert.Inconclusive("TODO: Implement code to verify target");        }    }}
 |