Provides prompt information when Renci.SshNet.KeyboardInteractiveConnectionInfo.AuthenticationPrompt is raised
 public void AuthenticationPromptConstructorTest()
 {
     int id = 0; // TODO: Initialize to an appropriate value
     bool isEchoed = false; // TODO: Initialize to an appropriate value
     string request = string.Empty; // TODO: Initialize to an appropriate value
     AuthenticationPrompt target = new AuthenticationPrompt(id, isEchoed, request);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void ResponseTest()
 {
     int id = 0; // TODO: Initialize to an appropriate value
     bool isEchoed = false; // TODO: Initialize to an appropriate value
     string request = string.Empty; // TODO: Initialize to an appropriate value
     AuthenticationPrompt target = new AuthenticationPrompt(id, isEchoed, request); // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     target.Response = expected;
     actual = target.Response;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }