| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using Microsoft.VisualStudio.TestTools.UnitTesting;
- using Renci.SshNet.Common;
- using Renci.SshNet.Tests.Common;
- namespace Renci.SshNet.Tests.Classes.Common
- {
- /// <summary>
- ///This is a test class for AuthenticationPromptTest and is intended
- ///to contain all AuthenticationPromptTest Unit Tests
- ///</summary>
- [TestClass]
- public class AuthenticationPromptTest : TestBase
- {
- /// <summary>
- ///A test for AuthenticationPrompt Constructor
- ///</summary>
- [TestMethod]
- public void AuthenticationPromptConstructorTest()
- {
- var id = 0; // TODO: Initialize to an appropriate value
- var isEchoed = false; // TODO: Initialize to an appropriate value
- var request = string.Empty; // TODO: Initialize to an appropriate value
- var target = new AuthenticationPrompt(id, isEchoed, request);
- Assert.Inconclusive("TODO: Implement code to verify target");
- }
- /// <summary>
- ///A test for Response
- ///</summary>
- [TestMethod]
- public void ResponseTest()
- {
- var id = 0; // TODO: Initialize to an appropriate value
- var isEchoed = false; // TODO: Initialize to an appropriate value
- var request = string.Empty; // TODO: Initialize to an appropriate value
- var target = new AuthenticationPrompt(id, isEchoed, request); // TODO: Initialize to an appropriate value
- var expected = string.Empty; // TODO: Initialize to an appropriate value
- target.Response = expected;
- var actual = target.Response;
- Assert.AreEqual(expected, actual);
- Assert.Inconclusive("Verify the correctness of this test method.");
- }
- }
- }
|