chromium/third_party/blink/renderer/platform/peerconnection/two_keys_adapter_map_unittest.cc

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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) {}

}  // namespace blink