ExceptionEventArgsTest.cs 847 B

1234567891011121314151617181920212223242526
  1. using System;
  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 ExceptionEventArgsTest and is intended
  9. ///to contain all ExceptionEventArgsTest Unit Tests
  10. ///</summary>
  11. [TestClass]
  12. public class ExceptionEventArgsTest : TestBase
  13. {
  14. /// <summary>
  15. ///A test for ExceptionEventArgs Constructor
  16. ///</summary>
  17. [TestMethod]
  18. public void ExceptionEventArgsConstructorTest()
  19. {
  20. Exception exception = null; // TODO: Initialize to an appropriate value
  21. ExceptionEventArgs target = new ExceptionEventArgs(exception);
  22. Assert.Inconclusive("TODO: Implement code to verify target");
  23. }
  24. }
  25. }