Package redis.reply

Examples of redis.reply.BulkReply


   * @see DATAREDIS-206
   */
  @Test(expected = IllegalArgumentException.class)
  public void testConverterShouldThrowExecptionForEmptyDataBlocks() {

    Reply<?> invalidDataBlock = new BulkReply(null);
    Reply<?> microseconds = new BulkReply("555122".getBytes(Charset.forName("UTF-8")));

    converter.convert(new Reply[] { invalidDataBlock, microseconds });
  }
View Full Code Here

TOP

Related Classes of redis.reply.BulkReply

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.