chromium/chrome/browser/ui/webui/side_panel/bookmarks/bookmarks_page_handler_unittest.cc

// Copyright 2023 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 "chrome/browser/ui/webui/side_panel/bookmarks/bookmarks_page_handler.h"

#include "chrome/browser/ui/webui/bookmarks/bookmark_prefs.h"
#include "chrome/test/base/browser_with_test_window_test.h"
#include "components/bookmarks/common/bookmark_pref_names.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace {

class TestBookmarksPageHandler : public BookmarksPageHandler {};

class BookmarksPageHandlerTest : public BrowserWithTestWindowTest {};

TEST_F(BookmarksPageHandlerTest, SetSortOrder) {}

TEST_F(BookmarksPageHandlerTest, SetViewType) {}

}  // namespace