assertTrue("Made transport", transport != null);
List connectors = container.getTransportConnectors();
assertEquals("Should have created more connectors", 3, connectors.size());
BrokerConnectorImpl connector1 = (BrokerConnectorImpl) connectors.get(0);
TransportServerChannel serverChannel1 = connector1.getServerChannel();
assertTrue(serverChannel1 instanceof VmTransportServerChannel);
BrokerConnectorImpl connector2 = (BrokerConnectorImpl) connectors.get(1);
TransportServerChannel serverChannel2 = connector2.getServerChannel();
assertTrue(serverChannel2 instanceof TcpTransportServerChannel);
TcpTransportServerChannel tcpChannel2 = (TcpTransportServerChannel) serverChannel2;
assertEquals("backlog", 1000, tcpChannel2.getBacklog());
assertEquals("maxOutstandingMessages", 50, tcpChannel2.getMaxOutstandingMessages());
assertTrue("useAsyncSend", tcpChannel2.isUseAsyncSend());