| 31 | char** my_argv; |
| 32 | |
| 33 | std::vector<std::string> StringSplit(std::string str, char split) { |
| 34 | std::vector<std::string> strs; |
| 35 | std::istringstream f(str); |
| 36 | std::string s; |
| 37 | while (getline(f, s, split)) { |
| 38 | strs.push_back(s); |
| 39 | } |
| 40 | return strs; |
| 41 | } |
| 42 | |
| 43 | TEST_F(KVDBTest, AbstractKVDB_Func_Test) { |
| 44 | AbsKVDBPtr kvdb = std::make_shared<RocksKVDB>(); |