2
0

MessageEventArgsTest.cs 915 B

1234567891011121314151617181920212223242526272829
  1. using Microsoft.VisualStudio.TestTools.UnitTesting;
  2. using Renci.SshNet.Tests.Common;
  3. namespace Renci.SshNet.Tests.Classes
  4. {
  5. /// <summary>
  6. /// Provides data for message events.
  7. /// </summary>
  8. [TestClass]
  9. public class MessageEventArgsTest : TestBase
  10. {
  11. /// <summary>
  12. ///A test for MessageEventArgs`1 Constructor
  13. ///</summary>
  14. public void MessageEventArgsConstructorTestHelper<T>()
  15. {
  16. T message = default(T); // TODO: Initialize to an appropriate value
  17. MessageEventArgs<T> target = new MessageEventArgs<T>(message);
  18. Assert.Inconclusive("TODO: Implement code to verify target");
  19. }
  20. [TestMethod]
  21. [Ignore] // placeholder for actual test
  22. public void MessageEventArgsConstructorTest()
  23. {
  24. MessageEventArgsConstructorTestHelper<GenericParameterHelper>();
  25. }
  26. }
  27. }