AlgorithmTest.cs 1013 B

12345678910111213141516171819202122232425262728293031323334
  1. using Microsoft.VisualStudio.TestTools.UnitTesting;
  2. using Renci.SshNet.Security;
  3. using Renci.SshNet.Tests.Common;
  4. namespace Renci.SshNet.Tests.Classes.Security
  5. {
  6. /// <summary>
  7. ///This is a test class for AlgorithmTest and is intended
  8. ///to contain all AlgorithmTest Unit Tests
  9. ///</summary>
  10. [TestClass()]
  11. public class AlgorithmTest : TestBase
  12. {
  13. internal virtual Algorithm CreateAlgorithm()
  14. {
  15. // TODO: Instantiate an appropriate concrete class.
  16. Algorithm target = null;
  17. return target;
  18. }
  19. /// <summary>
  20. ///A test for Name
  21. ///</summary>
  22. [TestMethod]
  23. [Ignore] // placeholder for actual test
  24. public void NameTest()
  25. {
  26. Algorithm target = CreateAlgorithm(); // TODO: Initialize to an appropriate value
  27. string actual;
  28. actual = target.Name;
  29. Assert.Inconclusive("Verify the correctness of this test method.");
  30. }
  31. }
  32. }