// 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 "chrome/common/privacy_budget/order_preserving_set.h" #include <vector> #include "testing/gtest/include/gtest/gtest.h" #include "third_party/blink/public/common/privacy_budget/identifiable_surface.h" TEST(OrderPreservingSetTest, CanInstantiate) { … } TEST(OrderPreservingSetTest, CanMoveAssign) { … } TEST(OrderPreservingSetTest, IteratorsPreserveOrder) { … } TEST(OrderPreservingSetTest, LookupsWork) { … }