use of io.pravega.controller.store.stream.records.Subscribers in project pravega by pravega.
the class ControllerMetadataJsonSerializerTest method testSubscribers.
@Test
public void testSubscribers() {
Subscribers record = new Subscribers(ImmutableSet.of("a", "b"));
testRecordSerialization(record, Subscribers.class);
}
Aggregations