public class TextIncrDecrCommandUnitTest extends BaseTextCommandUnitTest {
public void testEncodeIncr() {
Command command = this.commandFactory.createIncrDecrCommand("test",
"test".getBytes(), 10, 0,0, CommandType.INCR, false);
assertNull(command.getIoBuffer());
command.encode();
checkByteBufferEquals(command, "incr test 10\r\n");
command = this.commandFactory.createIncrDecrCommand("test",
"test".getBytes(), 10, 0,0, CommandType.INCR, true);