@Before
 public void setUp() throws Exception {
   mqttCommandPort = new MqttCommandPort();
   service = mock(HomeService.class);
   mqttCommandPort.activate(service);
   testItem = mock(HomeItemProxy.class);
   doReturn(testItem).when(service).openInstance(TEST_ITEM_NAME);
 }