| 12345678910111213141516171819202122232425262728293031 | using Microsoft.VisualStudio.TestTools.UnitTesting;namespace Renci.SshNet.Tests.Classes{    [TestClass]    public class SessionTest_Connecting_ServerResetsSequenceNumberAfterNewKeys_StrictKex : SessionTest_ConnectingBase    {        protected override bool ServerSupportsStrictKex        {            get            {                return true;            }        }        protected override bool ServerResetsSequenceAfterSendingNewKeys        {            get            {                return true;            }        }        [TestMethod]        public void ShouldNotThrowException()        {            Session.Connect();        }    }}
 |