use of org.apache.rocketmq.connect.redis.parser.SortParser in project rocketmq-externals by apache.
the class ParserTest method testSortParser.
@Test
public void testSortParser() {
String command = "sort key";
KVEntry builder = new SortParser().parse(parseCommand(command));
Assert.assertEquals("sort", builder.getCommand());
Assert.assertEquals("key", builder.getKey());
}
Aggregations