| 288 | } |
| 289 | |
| 290 | void testFunction(dod::slot_map<std::string>::key k, const dod::slot_map<std::string>& slotMap) |
| 291 | { |
| 292 | const std::string* v = slotMap.get(k); |
| 293 | ASSERT_NE(v, nullptr); |
| 294 | EXPECT_STREQ(v->c_str(), "test"); |
| 295 | } |
| 296 | |
| 297 | TEST(SlotMapTest, ConstantGetter) |
| 298 | { |