assertEquals(CLIENT_NAME, clientNames.get(0));
}
private TestConfig createTestConfig()
{
CommandForClient commandForClient1 = new CommandForClient(CLIENT_NAME, _noOpCommand);
CommandForClient commandForClient2 = new CommandForClient(CLIENT_NAME, _createProducerCommand);
CommandForClient commandForClient3 = new CommandForClient(CLIENT_NAME, _createConsumerCommand);
TestConfig config = mock(TestConfig.class);
when(config.createCommands()).thenReturn(Arrays.asList(commandForClient1, commandForClient2, commandForClient3));
return config;