| 151 | |
| 152 | template <typename MemoTable, typename Value> |
| 153 | void AssertGet(MemoTable& table, const Value& v, int32_t expected) { |
| 154 | ASSERT_EQ(table.Get(v), expected); |
| 155 | } |
| 156 | |
| 157 | template <typename MemoTable, typename Value> |
| 158 | void AssertGetOrInsert(MemoTable& table, const Value& v, int32_t expected) { |