// 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/power_bookmarks/common/power.h" #include "base/time/time.h" #include "base/uuid.h" #include "components/sync/protocol/power_bookmark_specifics.pb.h" #include "testing/gtest/include/gtest/gtest.h" namespace power_bookmarks { namespace { sync_pb::PowerBookmarkSpecifics CreatePowerBookmarkSpecifics() { … } } // namespace TEST(PowerTest, CreateFromSpecifics) { … } TEST(PowerTest, ToAndFromSpecifics) { … } TEST(PowerTest, ClonePower) { … } TEST(PowerTest, MergePower) { … } } // namespace power_bookmarks