AuthenticationBannerEventArgsTest.cs 1.1 KB

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