// Copyright 2022 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/browsing_topics/topic_and_domains.h" #include "testing/gtest/include/gtest/gtest.h" namespace browsing_topics { class TopicAndDomainsTest : public testing::Test { … }; TEST_F(TopicAndDomainsTest, FromEmptyDictionaryValue) { … } TEST_F(TopicAndDomainsTest, EmptyTopicAndDomains_ToAndFromDictValue) { … } TEST_F(TopicAndDomainsTest, PopulatedTopicAndDomains_ToAndFromValue) { … } TEST_F(TopicAndDomainsTest, ClearDomain) { … } } // namespace browsing_topics