use of org.onosproject.store.mcast.impl.DistributedMcastStore in project onos by opennetworkinglab.
the class MulticastRouteManagerTest method setUp.
@Before
public void setUp() throws Exception {
manager = new MulticastRouteManager();
mcastStore = new DistributedMcastStore();
TestUtils.setField(mcastStore, "storageService", new TestStorageService());
injectEventDispatcher(manager, new TestEventDispatcher());
events = Lists.newArrayList();
manager.store = mcastStore;
mcastStore.activate();
manager.activate();
manager.addListener(listener);
}
Aggregations