@Test
public void testStartDoesntCreateMultipleServices() throws Exception {
// setup
testObj.start();
ConsumerService expectedService = testObj.getConsumerService();
testObj.start();
// act
ConsumerService result = testObj.getConsumerService();
// assert
assertEquals(expectedService, result);
}