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 RequestFailureMessageTest and is intended
    ///to contain all RequestFailureMessageTest Unit Tests
    ///
    [TestClass()]
    public class RequestFailureMessageTest : TestBase
    {
        /// 
        ///A test for RequestFailureMessage Constructor
        ///
        [TestMethod()]
        public void RequestFailureMessageConstructorTest()
        {
            RequestFailureMessage target = new RequestFailureMessage();
            Assert.Inconclusive("TODO: Implement code to verify target");
        }
    }
}