use of com.faforever.server.client.CloseConnectionEvent in project faf-java-server by FAForever.
the class LegacyAdapterConfigTest method onCloseConnection.
@Test
public void onCloseConnection() throws Exception {
ClientConnection clientConnection = new ClientConnection("1", Protocol.V1_LEGACY_UTF_16, mock(InetAddress.class));
instance.onCloseConnection(new CloseConnectionEvent(this, clientConnection));
// Not much to assert here
}
Aggregations