use of org.mule.runtime.api.store.PartitionableObjectStore in project mule by mulesoft.
the class EventGroupTestCase method isDisposedEventGroupPartition.
@Test
public void isDisposedEventGroupPartition() throws Exception {
EventGroup eventGroup = new EventGroup(UUID.getUUID(), muleContext);
PartitionableObjectStore objectStore = mock(PartitionableObjectStore.class);
eventGroup.initEventsStore(objectStore);
eventGroup.clear();
verify(objectStore).disposePartition(anyString());
}
Aggregations