Return the value to associate with the specified key
| 176 | |
| 177 | // Return the value to associate with the specified key |
| 178 | Slice Value(int k, std::string* storage) { |
| 179 | Random r(k); |
| 180 | return test::RandomString(&r, kValueSize, storage); |
| 181 | } |
| 182 | |
| 183 | test::ErrorEnv env_; |
| 184 | Options options_; |
no test coverage detected