chromium/components/power_bookmarks/core/power_bookmark_utils_unittest.cc

// 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 <memory>

#include "components/bookmarks/browser/bookmark_model.h"
#include "components/bookmarks/test/test_bookmark_client.h"
#include "components/power_bookmarks/core/power_bookmark_utils.h"
#include "components/power_bookmarks/core/proto/power_bookmark_meta.pb.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace power_bookmarks {
namespace {

UnorderedElementsAre;

const std::string kLeadImageUrl =;

const char16_t kExampleTitle[] =;
const std::string kExampleUrl =;

class PowerBookmarkUtilsTest : public testing::Test {};

TEST_F(PowerBookmarkUtilsTest, TestAddAndAccess) {}

TEST_F(PowerBookmarkUtilsTest, TestAddAndDelete) {}

TEST_F(PowerBookmarkUtilsTest, GetBookmarksMatchingPropertiesFilterTags) {}

TEST_F(PowerBookmarkUtilsTest, GetBookmarksMatchingPropertiesSearchTags) {}

TEST_F(PowerBookmarkUtilsTest,
       GetBookmarksMatchingPropertiesSearchMultipleTags) {}

TEST_F(PowerBookmarkUtilsTest, GetBookmarksMatchingPropertiesStringSearch) {}

TEST_F(PowerBookmarkUtilsTest, GetBookmarksMatchingPropertiesFolderSearch) {}

TEST_F(PowerBookmarkUtilsTest, GetBookmarksMatchingPropertiesTypeSearch) {}

TEST_F(PowerBookmarkUtilsTest, EncodeAndDecodeForPersistence) {}

}  // namespace
}  // namespace power_bookmarks