use of org.apache.pulsar.functions.api.StateStore in project pulsar by apache.
the class InstanceStateManagerTest method testGetStoreNull.
@Test
public void testGetStoreNull() {
final String fqsn = "t/ns/store";
StateStore getStore = stateManager.getStore("t", "ns", "store");
assertNull(getStore);
}
Aggregations