chromium/chrome/browser/ui/tabs/existing_tab_group_sub_menu_model_unittest.cc

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/ui/tabs/existing_tab_group_sub_menu_model.h"
#include <memory>

#include "chrome/browser/ui/browser_list.h"
#include "chrome/browser/ui/browser_tab_menu_model_delegate.h"
#include "chrome/browser/ui/tabs/tab_group.h"
#include "chrome/browser/ui/tabs/tab_group_model.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/test/base/browser_with_test_window_test.h"
#include "components/tab_groups/tab_group_id.h"
#include "url/gurl.h"

class ExistingTabGroupSubMenuModelTest : public BrowserWithTestWindowTest {};

// Ensure that add to group submenu only appears when there is another group to
// move the tab into.
TEST_F(ExistingTabGroupSubMenuModelTest, ShouldShowSubmenu) {}

// Validate that the submenu has the correct items.
TEST_F(ExistingTabGroupSubMenuModelTest, BuildSubmenuItems) {}

// Verify tabs can be added tab groups in the same window.
TEST_F(ExistingTabGroupSubMenuModelTest, AddTabsToGroupSameWindow) {}

// Verify non-selected tabs can be added tab groups in the same window.
TEST_F(ExistingTabGroupSubMenuModelTest, AddNonSelectedTabsToTabGroup) {}

// Verify tabs can be added to tab groups in other browser windows.
TEST_F(ExistingTabGroupSubMenuModelTest, AddAllSelectedTabsToAnotherWindow) {}

TEST_F(ExistingTabGroupSubMenuModelTest, ShouldShowExistingTabGroups) {}

// Verify tab groups are display in the order they were created
TEST_F(ExistingTabGroupSubMenuModelTest, ShowTabGroupsInTheOrderTheyWereAdded) {}