mirror of
https://github.com/sshnet/SSH.NET.git
synced 2026-09-10 09:15:47 +00:00
34b5123f0a
* Send the client key exchange init in Connect * Add a test --------- Co-authored-by: Wojciech Nagórski <wojtpl2@gmail.com>
25 lines
505 B
C#
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()
|
|
{
|
|
}
|
|
}
|
|
}
|