use of com.moilioncircle.redis.replicator.rdb.datatype.Stream in project rocketmq-externals by apache.
the class RedisEventHandlerTest method testStreamListPacks.
@Test
public void testStreamListPacks() {
KVEntry builder = handlerTest(RDB_TYPE_STREAM_LISTPACKS, () -> {
Stream stream = new Stream();
return stream;
});
Stream va = (Stream) builder.getValue();
Assert.assertNotNull(va);
}