| 66 | |
| 67 | template <typename Key, typename Value> |
| 68 | Value Find(const std::map<Key, Value>& map, const Key& key) |
| 69 | { |
| 70 | auto it = map.find(key); |
| 71 | BOOST_CHECK_MESSAGE(it != map.end(), strprintf("Cannot find %s", key.ToString())); |
| 72 | return it->second; |
| 73 | } |
| 74 | |
| 75 | BOOST_FIXTURE_TEST_CASE(miniminer_negative, TestChain100Setup) |
| 76 | { |
no test coverage detected