using Renci.SshNet;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using Renci.SshNet.Tests.Common;
namespace Renci.SshNet.Tests
{
    /// 
    ///This is a test class for ForwardedPortTest and is intended
    ///to contain all ForwardedPortTest Unit Tests
    ///
    [TestClass()]
    public class ForwardedPortTest : TestBase
    {
        internal virtual ForwardedPort CreateForwardedPort()
        {
            // TODO: Instantiate an appropriate concrete class.
            ForwardedPort target = null;
            return target;
        }
        /// 
        ///A test for Stop
        ///
        [TestMethod()]
        public void StopTest()
        {
            ForwardedPort target = CreateForwardedPort(); // TODO: Initialize to an appropriate value
            target.Stop();
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
        /// 
        ///A test for Start
        ///
        [TestMethod()]
        public void StartTest()
        {
            ForwardedPort target = CreateForwardedPort(); // TODO: Initialize to an appropriate value
            target.Start();
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
    }
}