ExpectActionTest.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using Microsoft.VisualStudio.TestTools.UnitTesting;
  2. using Renci.SshNet.Tests.Common;
  3. using System;
  4. using System.Text.RegularExpressions;
  5. namespace Renci.SshNet.Tests.Classes
  6. {
  7. /// <summary>
  8. /// Specifies behavior for expected expression
  9. /// </summary>
  10. [TestClass]
  11. public class ExpectActionTest : TestBase
  12. {
  13. /// <summary>
  14. ///A test for ExpectAction Constructor
  15. ///</summary>
  16. [TestMethod()]
  17. public void ExpectActionConstructorTest()
  18. {
  19. string expect = string.Empty; // TODO: Initialize to an appropriate value
  20. Action<string> action = null; // TODO: Initialize to an appropriate value
  21. ExpectAction target = new ExpectAction(expect, action);
  22. Assert.Inconclusive("TODO: Implement code to verify target");
  23. }
  24. /// <summary>
  25. ///A test for ExpectAction Constructor
  26. ///</summary>
  27. [TestMethod()]
  28. public void ExpectActionConstructorTest1()
  29. {
  30. Regex expect = null; // TODO: Initialize to an appropriate value
  31. Action<string> action = null; // TODO: Initialize to an appropriate value
  32. ExpectAction target = new ExpectAction(expect, action);
  33. Assert.Inconclusive("TODO: Implement code to verify target");
  34. }
  35. }
  36. }