diff --git a/base/base_tests/bidirectional_map_tests.cpp b/base/base_tests/bidirectional_map_tests.cpp index 3142e16ef6..c68aaeaf49 100644 --- a/base/base_tests/bidirectional_map_tests.cpp +++ b/base/base_tests/bidirectional_map_tests.cpp @@ -12,38 +12,15 @@ UNIT_TEST(BidirectionalMap_Smoke) { BidirectionalMap m; m.Add(1, "a"); - TEST_EQUAL(m.MustGetValue(1), "a", ()); - TEST_EQUAL(m.MustGetKey("a"), 1, ()); -} - -UNIT_TEST(BidirectionalMap_Exceptions) -{ - // Tests that the exceptions are thrown as expected. - // Note that it is discouraged to catch them when using Must* methods. - BidirectionalMap m; - { - bool caught = false; - try - { - UNUSED_VALUE(m.MustGetValue(0)); - } - catch (BidirectionalMap::NoValueForKeyException const & e) - { - caught = true; - } - TEST(caught, ()); - } { - bool caught = false; - try - { - UNUSED_VALUE(m.MustGetKey("")); - } - catch (BidirectionalMap::NoKeyForValueException const & e) - { - caught = true; - } - TEST(caught, ()); + string value; + TEST(m.GetValue(1, value), ()); + TEST_EQUAL(value, "a", ()); + } + { + int key; + TEST(m.GetKey("a", key), ()); + TEST_EQUAL(key, 1, ()); } } diff --git a/base/bidirectional_map.hpp b/base/bidirectional_map.hpp index d16b3d8366..d7f9193a24 100644 --- a/base/bidirectional_map.hpp +++ b/base/bidirectional_map.hpp @@ -1,6 +1,5 @@ #pragma once -#include "base/exception.hpp" #include "base/logging.hpp" #include @@ -12,10 +11,6 @@ template class BidirectionalMap { public: - DECLARE_EXCEPTION(Exception, RootException); - DECLARE_EXCEPTION(NoKeyForValueException, Exception); - DECLARE_EXCEPTION(NoValueForKeyException, Exception); - BidirectionalMap() = default; size_t Size() const { return m_kToV.size(); } @@ -67,22 +62,6 @@ public: return true; } - V MustGetValue(K const & key) const - { - V result; - if (!GetValue(key, result)) - MYTHROW(NoValueForKeyException, (key)); - return result; - } - - K MustGetKey(V const & value) const - { - K result; - if (!GetKey(value, result)) - MYTHROW(NoKeyForValueException, (value)); - return result; - } - private: std::unordered_map m_kToV; std::unordered_map m_vToK;