Files
ssh.net/test/Renci.SshNet.Tests/Classes/SessionTest_Connected_ServerDoesNotSendKexInit.cs
Rob Hague 34b5123f0a Send the client key exchange init in Connect (#1274)
* Send the client key exchange init in Connect

* Add a test

---------

Co-authored-by: Wojciech Nagórski <wojtpl2@gmail.com>
2023-12-21 06:54:32 +01:00

25 lines
505 B
C#

using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace Renci.SshNet.Tests.Classes
{
[TestClass]
public class SessionTest_Connected_ServerDoesNotSendKexInit : SessionTest_ConnectedBase
{
protected override void SetupData()
{
WaitForClientKeyExchangeInit = true;
base.SetupData();
}
protected override void Act()
{
}
[TestMethod]
public void ConnectShouldSucceed()
{
}
}
}