@Test
public void testLocalDumpWithoutInit() throws Exception {
final TcpConnection con = new TcpConnection(
mockConnection.getSocketA(), data);
// Must not write any data as we're not initialized:
con.writeExecutionData(false);
assertEquals(0, mockConnection.getSocketB().getInputStream()
.available());
}