using Microsoft.VisualStudio.TestTools.UnitTesting; using Renci.SshNet.Common; using Renci.SshNet.Security; using Renci.SshNet.Tests.Common; namespace Renci.SshNet.Tests.Classes.Security { /// ///This is a test class for KeyExchangeDiffieHellmanGroup1Sha1Test and is intended ///to contain all KeyExchangeDiffieHellmanGroup1Sha1Test Unit Tests /// [TestClass()] public class KeyExchangeDiffieHellmanGroup1Sha1Test : TestBase { /// ///A test for KeyExchangeDiffieHellmanGroup1Sha1 Constructor /// [TestMethod()] public void KeyExchangeDiffieHellmanGroup1Sha1ConstructorTest() { KeyExchangeDiffieHellmanGroup1Sha1 target = new KeyExchangeDiffieHellmanGroup1Sha1(); Assert.Inconclusive("TODO: Implement code to verify target"); } /// ///A test for GroupPrime /// [TestMethod()] public void GroupPrimeTest() { KeyExchangeDiffieHellmanGroup1Sha1 target = new KeyExchangeDiffieHellmanGroup1Sha1(); // TODO: Initialize to an appropriate value BigInteger actual; actual = target.GroupPrime; Assert.Inconclusive("Verify the correctness of this test method."); } /// ///A test for Name /// [TestMethod()] public void NameTest() { KeyExchangeDiffieHellmanGroup1Sha1 target = new KeyExchangeDiffieHellmanGroup1Sha1(); // TODO: Initialize to an appropriate value string actual; actual = target.Name; Assert.Inconclusive("Verify the correctness of this test method."); } } }