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 BaseClientTest and is intended ///to contain all BaseClientTest Unit Tests /// [TestClass()] public class BaseClientTest : TestBase { internal virtual BaseClient CreateBaseClient() { // TODO: Instantiate an appropriate concrete class. BaseClient target = null; return target; } /// ///A test for KeepAliveInterval /// [TestMethod()] public void KeepAliveIntervalTest() { BaseClient target = CreateBaseClient(); // TODO: Initialize to an appropriate value TimeSpan expected = new TimeSpan(); // TODO: Initialize to an appropriate value TimeSpan actual; target.KeepAliveInterval = expected; actual = target.KeepAliveInterval; Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); } /// ///A test for IsConnected /// [TestMethod()] public void IsConnectedTest() { BaseClient target = CreateBaseClient(); // TODO: Initialize to an appropriate value bool actual; actual = target.IsConnected; Assert.Inconclusive("Verify the correctness of this test method."); } /// ///A test for SendKeepAlive /// [TestMethod()] public void SendKeepAliveTest() { BaseClient target = CreateBaseClient(); // TODO: Initialize to an appropriate value target.SendKeepAlive(); Assert.Inconclusive("A method that does not return a value cannot be verified."); } /// ///A test for Dispose /// [TestMethod()] public void DisposeTest() { BaseClient target = CreateBaseClient(); // TODO: Initialize to an appropriate value target.Dispose(); Assert.Inconclusive("A method that does not return a value cannot be verified."); } /// ///A test for Disconnect /// [TestMethod()] public void DisconnectTest() { BaseClient target = CreateBaseClient(); // TODO: Initialize to an appropriate value target.Disconnect(); Assert.Inconclusive("A method that does not return a value cannot be verified."); } /// ///A test for Connect /// [TestMethod()] public void ConnectTest() { BaseClient target = CreateBaseClient(); // TODO: Initialize to an appropriate value target.Connect(); Assert.Inconclusive("A method that does not return a value cannot be verified."); } } }