using Microsoft.VisualStudio.TestTools.UnitTesting; using Renci.SshNet.Tests.Common; namespace Renci.SshNet.Tests.Classes { /// /// Provides functionality for dynamic port forwarding /// [TestClass] public partial class ForwardedPortDynamicTest : TestBase { /// ///A test for Stop /// [TestMethod()] public void StopTest() { uint port = 0; // TODO: Initialize to an appropriate value ForwardedPortDynamic target = new ForwardedPortDynamic(port); // 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() { uint port = 0; // TODO: Initialize to an appropriate value ForwardedPortDynamic target = new ForwardedPortDynamic(port); // TODO: Initialize to an appropriate value target.Start(); Assert.Inconclusive("A method that does not return a value cannot be verified."); } /// ///A test for Dispose /// [TestMethod()] public void DisposeTest() { uint port = 0; // TODO: Initialize to an appropriate value ForwardedPortDynamic target = new ForwardedPortDynamic(port); // TODO: Initialize to an appropriate value target.Dispose(); Assert.Inconclusive("A method that does not return a value cannot be verified."); } /// ///A test for ForwardedPortDynamic Constructor /// [TestMethod()] public void ForwardedPortDynamicConstructorTest() { string host = string.Empty; // TODO: Initialize to an appropriate value uint port = 0; // TODO: Initialize to an appropriate value ForwardedPortDynamic target = new ForwardedPortDynamic(host, port); Assert.Inconclusive("TODO: Implement code to verify target"); } /// ///A test for ForwardedPortDynamic Constructor /// [TestMethod()] public void ForwardedPortDynamicConstructorTest1() { uint port = 0; // TODO: Initialize to an appropriate value ForwardedPortDynamic target = new ForwardedPortDynamic(port); Assert.Inconclusive("TODO: Implement code to verify target"); } } }