Akka.Tests.IO.TcpIntegrationSpec.The_TCP_transport_implementation_should_properly_handle_connection_abort_from_client_side_after_chit_chat C# (CSharp) Method

The_TCP_transport_implementation_should_properly_handle_connection_abort_from_client_side_after_chit_chat() private method

        public void The_TCP_transport_implementation_should_properly_handle_connection_abort_from_client_side_after_chit_chat()
        {
            new TestSetup(this).Run(x =>
            {
                var actors = x.EstablishNewClientConnection();
                ChitChat(actors);

                actors.ClientHandler.Send(actors.ClientConnection, Tcp.Abort.Instance);
                actors.ClientHandler.ExpectMsg<Tcp.Aborted>();
                actors.ServerHandler.ExpectMsg<Tcp.ErrorClosed>();
                VerifyActorTermination(actors.ClientConnection);
                VerifyActorTermination(actors.ServerConnection);
            });   
        }