Map<String, EventBus> map = new HashMap<String, EventBus>();
map.put("ignored", mockEventBus);
when(mockApplicationContext.getBeansOfType(EventBus.class)).thenReturn(map);
final AnnotationEventListenerAdapter adapter = mock(AnnotationEventListenerAdapter.class);
EventListener mockProxy = mock(EventListener.class);
testSubject.subscribe(mockProxy, adapter);
verify(mockApplicationContext).getBeansOfType(EventBus.class);
verify(mockEventBus).subscribe(mockProxy);
verifyZeroInteractions(adapter);