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