use of org.kie.workbench.common.screens.archetype.mgmt.shared.events.ArchetypeListUpdatedEvent in project kie-wb-common by kiegroup.
the class ArchetypesSectionPresenterTest method onArchetypeListUpdatedEventWhenTableIsNotSetup.
@Test
public void onArchetypeListUpdatedEventWhenTableIsNotSetup() {
doReturn(false).when(archetypeTablePresenter).isSetup();
final ArchetypeListUpdatedEvent event = mock(ArchetypeListUpdatedEvent.class);
presenter.onArchetypeListUpdatedEvent(event);
verify(settingsSectionChangeEvent, never()).fire(any());
verify(notificationEvent, never()).fire(any());
}
Aggregations