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