KeyExchangeDiffieHellmanGroupExchangeSha256Test.cs 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. using Microsoft.VisualStudio.TestTools.UnitTesting;
  2. using Renci.SshNet.Messages.Transport;
  3. using Renci.SshNet.Security;
  4. using Renci.SshNet.Tests.Common;
  5. namespace Renci.SshNet.Tests.Classes.Security
  6. {
  7. /// <summary>
  8. ///This is a test class for KeyExchangeDiffieHellmanGroupExchangeSha256Test and is intended
  9. ///to contain all KeyExchangeDiffieHellmanGroupExchangeSha256Test Unit Tests
  10. ///</summary>
  11. [TestClass]
  12. public class KeyExchangeDiffieHellmanGroupExchangeSha256Test : TestBase
  13. {
  14. /// <summary>
  15. ///A test for KeyExchangeDiffieHellmanGroupExchangeSha256 Constructor
  16. ///</summary>
  17. [TestMethod]
  18. [Ignore] // placeholder for actual test
  19. public void KeyExchangeDiffieHellmanGroupExchangeSha256ConstructorTest()
  20. {
  21. KeyExchangeDiffieHellmanGroupExchangeSha256 target = new KeyExchangeDiffieHellmanGroupExchangeSha256();
  22. Assert.Inconclusive("TODO: Implement code to verify target");
  23. }
  24. /// <summary>
  25. ///A test for Finish
  26. ///</summary>
  27. [TestMethod]
  28. [Ignore] // placeholder for actual test
  29. public void FinishTest()
  30. {
  31. KeyExchangeDiffieHellmanGroupExchangeSha256 target = new KeyExchangeDiffieHellmanGroupExchangeSha256(); // TODO: Initialize to an appropriate value
  32. target.Finish();
  33. Assert.Inconclusive("A method that does not return a value cannot be verified.");
  34. }
  35. /// <summary>
  36. ///A test for Start
  37. ///</summary>
  38. [TestMethod]
  39. [Ignore] // placeholder for actual test
  40. public void StartTest()
  41. {
  42. KeyExchangeDiffieHellmanGroupExchangeSha256 target = new KeyExchangeDiffieHellmanGroupExchangeSha256(); // TODO: Initialize to an appropriate value
  43. Session session = null; // TODO: Initialize to an appropriate value
  44. KeyExchangeInitMessage message = null; // TODO: Initialize to an appropriate value
  45. target.Start(session, message);
  46. Assert.Inconclusive("A method that does not return a value cannot be verified.");
  47. }
  48. /// <summary>
  49. ///A test for Name
  50. ///</summary>
  51. [TestMethod]
  52. [Ignore] // placeholder for actual test
  53. public void NameTest()
  54. {
  55. KeyExchangeDiffieHellmanGroupExchangeSha256 target = new KeyExchangeDiffieHellmanGroupExchangeSha256(); // TODO: Initialize to an appropriate value
  56. string actual;
  57. actual = target.Name;
  58. Assert.Inconclusive("Verify the correctness of this test method.");
  59. }
  60. }
  61. }