SshAuthenticationExceptionTest.cs 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. using System;
  2. using Microsoft.VisualStudio.TestTools.UnitTesting;
  3. using Renci.SshNet.Common;
  4. namespace Renci.SshNet.Tests.Classes.Common
  5. {
  6. /// <summary>
  7. ///This is a test class for SshAuthenticationExceptionTest and is intended
  8. ///to contain all SshAuthenticationExceptionTest Unit Tests
  9. ///</summary>
  10. [TestClass]
  11. public class SshAuthenticationExceptionTest
  12. {
  13. /// <summary>
  14. ///A test for SshAuthenticationException Constructor
  15. ///</summary>
  16. [TestMethod]
  17. public void SshAuthenticationExceptionConstructorTest()
  18. {
  19. SshAuthenticationException target = new SshAuthenticationException();
  20. Assert.Inconclusive("TODO: Implement code to verify target");
  21. }
  22. /// <summary>
  23. ///A test for SshAuthenticationException Constructor
  24. ///</summary>
  25. [TestMethod]
  26. public void SshAuthenticationExceptionConstructorTest1()
  27. {
  28. string message = string.Empty; // TODO: Initialize to an appropriate value
  29. SshAuthenticationException target = new SshAuthenticationException(message);
  30. Assert.Inconclusive("TODO: Implement code to verify target");
  31. }
  32. /// <summary>
  33. ///A test for SshAuthenticationException Constructor
  34. ///</summary>
  35. [TestMethod]
  36. public void SshAuthenticationExceptionConstructorTest2()
  37. {
  38. string message = string.Empty; // TODO: Initialize to an appropriate value
  39. Exception innerException = null; // TODO: Initialize to an appropriate value
  40. SshAuthenticationException target = new SshAuthenticationException(message, innerException);
  41. Assert.Inconclusive("TODO: Implement code to verify target");
  42. }
  43. }
  44. }