| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 | using Microsoft.VisualStudio.TestTools.UnitTesting;using Renci.SshNet.Common;using Renci.SshNet.Messages.Transport;using Renci.SshNet.Security;using Renci.SshNet.Tests.Common;namespace Renci.SshNet.Tests.Classes.Security{    /// <summary>    ///This is a test class for KeyExchangeDiffieHellmanGroupSha1Test and is intended    ///to contain all KeyExchangeDiffieHellmanGroupSha1Test Unit Tests    ///</summary>    [TestClass()]    public class KeyExchangeDiffieHellmanGroupSha1Test : TestBase    {        internal virtual KeyExchangeDiffieHellmanGroupSha1 CreateKeyExchangeDiffieHellmanGroupSha1()        {            // TODO: Instantiate an appropriate concrete class.            KeyExchangeDiffieHellmanGroupSha1 target = null;            return target;        }        /// <summary>        ///A test for Finish        ///</summary>        [TestMethod]        [Ignore] // placeholder for actual test        public void FinishTest()        {            KeyExchangeDiffieHellmanGroupSha1 target = CreateKeyExchangeDiffieHellmanGroupSha1(); // TODO: Initialize to an appropriate value            target.Finish();            Assert.Inconclusive("A method that does not return a value cannot be verified.");        }        /// <summary>        ///A test for Start        ///</summary>        [TestMethod]        [Ignore] // placeholder for actual test        public void StartTest()        {            KeyExchangeDiffieHellmanGroupSha1 target = CreateKeyExchangeDiffieHellmanGroupSha1(); // TODO: Initialize to an appropriate value            Session session = null; // TODO: Initialize to an appropriate value            KeyExchangeInitMessage message = null; // TODO: Initialize to an appropriate value            target.Start(session, message);            Assert.Inconclusive("A method that does not return a value cannot be verified.");        }        /// <summary>        ///A test for GroupPrime        ///</summary>        [TestMethod]        [Ignore] // placeholder for actual test        public void GroupPrimeTest()        {            KeyExchangeDiffieHellmanGroupSha1 target = CreateKeyExchangeDiffieHellmanGroupSha1(); // TODO: Initialize to an appropriate value            BigInteger actual;            actual = target.GroupPrime;            Assert.Inconclusive("Verify the correctness of this test method.");        }    }}
 |