IgnoreMessageTest.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. using Renci.SshNet.Messages.Transport;
  2. using Microsoft.VisualStudio.TestTools.UnitTesting;
  3. using System;
  4. using Renci.SshNet.Tests.Common;
  5. namespace Renci.SshNet.Tests.Classes.Messages.Transport
  6. {
  7. /// <summary>
  8. ///This is a test class for IgnoreMessageTest and is intended
  9. ///to contain all IgnoreMessageTest Unit Tests
  10. ///</summary>
  11. [TestClass()]
  12. public class IgnoreMessageTest : TestBase
  13. {
  14. /// <summary>
  15. ///A test for IgnoreMessage Constructor
  16. ///</summary>
  17. [TestMethod()]
  18. public void IgnoreMessageConstructorTest()
  19. {
  20. IgnoreMessage target = new IgnoreMessage();
  21. Assert.Inconclusive("TODO: Implement code to verify target");
  22. }
  23. /// <summary>
  24. ///A test for IgnoreMessage Constructor
  25. ///</summary>
  26. [TestMethod()]
  27. public void IgnoreMessageConstructorTest1()
  28. {
  29. byte[] data = null; // TODO: Initialize to an appropriate value
  30. IgnoreMessage target = new IgnoreMessage(data);
  31. Assert.Inconclusive("TODO: Implement code to verify target");
  32. }
  33. }
  34. }