#include "third_party/blink/renderer/platform/peerconnection/two_keys_adapter_map.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/platform/wtf/text/string_hash.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
namespace blink {
class TwoKeysAdapterMapTest : public ::testing::Test { … };
TEST_F(TwoKeysAdapterMapTest, ShouldInitiallyBeEmpty) { … }
TEST_F(TwoKeysAdapterMapTest, InsertPrimaryShouldAllowLookup) { … }
TEST_F(TwoKeysAdapterMapTest, SetSecondaryKeyShouldAllowLookup) { … }
TEST_F(TwoKeysAdapterMapTest, EraseByPrimaryShouldRemoveElement) { … }
TEST_F(TwoKeysAdapterMapTest, EraseBySecondaryShouldRemoveElement) { … }
TEST_F(TwoKeysAdapterMapTest, EraseInvalidElementShouldReturnFalse) { … }
}