chromium/components/tpcd/metadata/common/manager_base_unittest.cc

// Copyright 2024 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/tpcd/metadata/common/manager_base.h"

#include <algorithm>
#include <memory>
#include <vector>

#include "base/notreached.h"
#include "base/test/scoped_feature_list.h"
#include "components/content_settings/core/common/content_settings.h"
#include "components/content_settings/core/common/content_settings_enums.mojom-shared.h"
#include "components/content_settings/core/common/host_indexed_content_settings.h"
#include "net/base/features.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace tpcd::metadata::common {

class ManagerBaseTest : public testing::Test {};

class ManagerBaseFeatureTest
    : public ManagerBaseTest,
      public testing::WithParamInterface</*kTpcdMetadataGrants*/ bool> {};

INSTANTIATE_TEST_SUITE_P();

TEST_P(ManagerBaseFeatureTest, GetContentSetting) {}

class ManagerBaseCohortTest
    : public ManagerBaseTest,
      public testing::WithParamInterface<
          /*content_settings::mojom::TpcdMetadataCohort:*/ int32_t> {};

INSTANTIATE_TEST_SUITE_P();

TEST_P(ManagerBaseCohortTest, GetContentSetting) {}
}  // namespace tpcd::metadata::common