KeyExchangeDiffieHellmanGroup1Sha1Test.cs 1.8 KB

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