2
0

KeyExchangeDiffieHellmanGroup1Sha1Test.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. using Microsoft.VisualStudio.TestTools.UnitTesting;
  2. using Renci.SshNet.Common;
  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 KeyExchangeDiffieHellmanGroup1Sha1Test and is intended
  9. ///to contain all KeyExchangeDiffieHellmanGroup1Sha1Test Unit Tests
  10. ///</summary>
  11. [TestClass()]
  12. public class KeyExchangeDiffieHellmanGroup1Sha1Test : TestBase
  13. {
  14. /// <summary>
  15. ///A test for KeyExchangeDiffieHellmanGroup1Sha1 Constructor
  16. ///</summary>
  17. [TestMethod()]
  18. public void KeyExchangeDiffieHellmanGroup1Sha1ConstructorTest()
  19. {
  20. KeyExchangeDiffieHellmanGroup1Sha1 target = new KeyExchangeDiffieHellmanGroup1Sha1();
  21. Assert.Inconclusive("TODO: Implement code to verify target");
  22. }
  23. /// <summary>
  24. ///A test for GroupPrime
  25. ///</summary>
  26. [TestMethod()]
  27. public void GroupPrimeTest()
  28. {
  29. KeyExchangeDiffieHellmanGroup1Sha1 target = new KeyExchangeDiffieHellmanGroup1Sha1(); // TODO: Initialize to an appropriate value
  30. BigInteger actual;
  31. actual = target.GroupPrime;
  32. Assert.Inconclusive("Verify the correctness of this test method.");
  33. }
  34. /// <summary>
  35. ///A test for Name
  36. ///</summary>
  37. [TestMethod()]
  38. public void NameTest()
  39. {
  40. KeyExchangeDiffieHellmanGroup1Sha1 target = new KeyExchangeDiffieHellmanGroup1Sha1(); // TODO: Initialize to an appropriate value
  41. string actual;
  42. actual = target.Name;
  43. Assert.Inconclusive("Verify the correctness of this test method.");
  44. }
  45. }
  46. }