MessageEventArgsTest.cs 997 B

123456789101112131415161718192021222324252627282930
  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. /// <typeparam name="T">Message type</typeparam>
  9. [TestClass]
  10. public class MessageEventArgsTest : TestBase
  11. {
  12. /// <summary>
  13. ///A test for MessageEventArgs`1 Constructor
  14. ///</summary>
  15. public void MessageEventArgsConstructorTestHelper<T>()
  16. {
  17. T message = default(T); // TODO: Initialize to an appropriate value
  18. MessageEventArgs<T> target = new MessageEventArgs<T>(message);
  19. Assert.Inconclusive("TODO: Implement code to verify target");
  20. }
  21. [TestMethod]
  22. [Ignore] // placeholder for actual test
  23. public void MessageEventArgsConstructorTest()
  24. {
  25. MessageEventArgsConstructorTestHelper<GenericParameterHelper>();
  26. }
  27. }
  28. }