| 35 | class MapFixture : public ::benchmark::Fixture { |
| 36 | public: |
| 37 | void SetUp(const ::benchmark::State& st) BENCHMARK_OVERRIDE { |
| 38 | m = ConstructRandomMap(static_cast<int>(st.range(0))); |
| 39 | } |
| 40 | |
| 41 | void TearDown(const ::benchmark::State&) BENCHMARK_OVERRIDE { m.clear(); } |
| 42 |
nothing calls this directly
no test coverage detected