| 32 | } |
| 33 | |
| 34 | void DumpStrings(vector<string> const & strings, uint64_t blockSize, vector<uint8_t> & buffer) |
| 35 | { |
| 36 | MemWriter<vector<uint8_t>> writer(buffer); |
| 37 | BlockedTextStorageWriter<decltype(writer)> ts(writer, blockSize); |
| 38 | for (auto const & s : strings) |
| 39 | ts.Append(s); |
| 40 | } |
| 41 | |
| 42 | UNIT_TEST(TextStorage_Smoke) |
| 43 | { |