// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/optimization_guide/core/insertion_ordered_set.h" #include "testing/gtest/include/gtest/gtest.h" namespace optimization_guide { TEST(InsertionOrderedSetTest, InsertOneElement) { … } TEST(InsertionOrderedSetTest, InsertTwoDistinctElements) { … } TEST(InsertionOrderedSetTest, InsertTwoIdenticalElements) { … } TEST(InsertionOrderedSetTest, Empty) { … } TEST(InsertionOrderedSetTest, Clear) { … } } // namespace optimization_guide