| 1234567891011121314151617181920212223242526272829303132333435363738 |
- using Microsoft.VisualStudio.TestTools.UnitTesting;
- using Renci.SshNet.Messages.Connection;
- using Renci.SshNet.Tests.Common;
- namespace Renci.SshNet.Tests.Classes.Messages.Connection
- {
- /// <summary>
- ///This is a test class for KeepAliveRequestInfoTest and is intended
- ///to contain all KeepAliveRequestInfoTest Unit Tests
- ///</summary>
- [TestClass]
- public class KeepAliveRequestInfoTest : TestBase
- {
- /// <summary>
- ///A test for KeepAliveRequestInfo Constructor
- ///</summary>
- [TestMethod]
- [Ignore] // placeholder
- public void KeepAliveRequestInfoConstructorTest()
- {
- var target = new KeepAliveRequestInfo();
- Assert.Inconclusive("TODO: Implement code to verify target");
- }
- /// <summary>
- ///A test for RequestName
- ///</summary>
- [TestMethod]
- [Ignore] // placeholder
- public void RequestNameTest()
- {
- var target = new KeepAliveRequestInfo(); // TODO: Initialize to an appropriate value
- var actual = target.RequestName;
- Assert.Inconclusive("Verify the correctness of this test method.");
- }
- }
- }
|