AuthenticationPromptEventArgsTest.cs 1.3 KB

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