ShellDataEventArgsTest.cs 1.2 KB

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