use of io.pravega.controller.store.stream.records.StreamSubscriber in project pravega by pravega.
the class ControllerMetadataJsonSerializerTest method testStreamSubscriber.
@Test
public void testStreamSubscriber() {
StreamSubscriber record = new StreamSubscriber("a", 1L, ImmutableMap.of(1L, 2L, 3L, 4L), 10L);
testRecordSerialization(record, StreamSubscriber.class);
}
Aggregations