@Test
 public void shouldInvokeDelegateIsRunning() throws Exception {
   selfStartingMonitoringView.isRunning();
   verify(dynamicMonitoringView).isRunning();
 }
 @Test
 public void shouldInvokeDelegateStop() throws Exception {
   selfStartingMonitoringView.stop();
   verify(dynamicMonitoringView).stop();
 }