2
0

AuthenticationPromptEventArgsTest.cs 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. using System.Collections.Generic;
  2. using Microsoft.VisualStudio.TestTools.UnitTesting;
  3. using Renci.SshNet.Common;
  4. using Renci.SshNet.Tests.Common;
  5. namespace Renci.SshNet.Tests.Classes.Common
  6. {
  7. /// <summary>
  8. ///This is a test class for AuthenticationPromptEventArgsTest and is intended
  9. ///to contain all AuthenticationPromptEventArgsTest Unit Tests
  10. ///</summary>
  11. [TestClass]
  12. public class AuthenticationPromptEventArgsTest : TestBase
  13. {
  14. /// <summary>
  15. ///A test for AuthenticationPromptEventArgs Constructor
  16. ///</summary>
  17. [TestMethod]
  18. public void AuthenticationPromptEventArgsConstructorTest()
  19. {
  20. var username = string.Empty; // TODO: Initialize to an appropriate value
  21. var instruction = string.Empty; // TODO: Initialize to an appropriate value
  22. var language = string.Empty; // TODO: Initialize to an appropriate value
  23. IEnumerable<AuthenticationPrompt> prompts = null; // TODO: Initialize to an appropriate value
  24. var target = new AuthenticationPromptEventArgs(username, instruction, language, prompts);
  25. Assert.Inconclusive("TODO: Implement code to verify target");
  26. }
  27. }
  28. }