Sort methods and add delKey method

This commit is contained in:
fbraem 2015-11-14 18:53:19 +01:00
parent f3dd36ac70
commit ed0b61c6e1
2 changed files with 479 additions and 592 deletions

File diff suppressed because it is too large Load Diff

View File

@ -36,12 +36,6 @@ public:
void testError();
void testIncr();
void testIncrBy();
void testPing();
void testSet();
void testMSet();
void testMSetWithMap();
void testStrlen();
void testRPush();
void testLIndex();
void testLInsert();
void testLPop();
@ -49,13 +43,17 @@ public:
void testLSet();
void testLTrim();
void testMulti();
void testPubSub();
void testRPop();
void testRPoplPush();
void testMSet();
void testMSetWithMap();
void testPing();
void testPipeliningWithSendCommands();
void testPipeliningWithWriteCommand();
void testPubSub();
void testSet();
void testStrlen();
void testRPop();
void testRPoplPush();
void testRPush();
void setUp();
void tearDown();
@ -64,6 +62,8 @@ public:
private:
void delKey(const std::string& key);
std::string _host;
unsigned _port;
static bool _connected;