internal virtual KeyExchangeDiffieHellman CreateKeyExchangeDiffieHellman()
        {
            // TODO: Instantiate an appropriate concrete class.
            KeyExchangeDiffieHellman target = null;

            return(target);
        }
        [Ignore] // placeholder for actual test
        public void StartTest()
        {
            KeyExchangeDiffieHellman target = CreateKeyExchangeDiffieHellman(); // 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.");
        }