| 66 | : useMmap(_useMmap), useCache(_useCache), threadSafe(_threadSafe) {} |
| 67 | |
| 68 | std::string toString() const { |
| 69 | return fmt::format( |
| 70 | "useMmap{} useCache{} threadSafe{}", useMmap, useCache, threadSafe); |
| 71 | } |
| 72 | }; |
| 73 | |
| 74 | class MemoryPoolTest : public testing::TestWithParam<TestParam> { |