#include "base/uuid.h"
#include "components/saved_tab_groups/mock_tab_group_sync_delegate.h"
#include "components/saved_tab_groups/mock_tab_group_sync_service.h"
#include "components/saved_tab_groups/saved_tab_group.h"
#include "components/saved_tab_groups/saved_tab_group_test_utils.h"
#include "components/saved_tab_groups/tab_group_sync_coordinator_impl.h"
#include "components/saved_tab_groups/tab_group_sync_delegate.h"
#include "components/saved_tab_groups/types.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
_;
Return;
namespace tab_groups {
namespace {
MATCHER_P(UuidEq, uuid, "") { … }
}
class TabGroupSyncCoordinatorTest : public testing::Test { … };
TEST_F(TabGroupSyncCoordinatorTest, HandleOpenTabGroupRequest) { … }
TEST_F(TabGroupSyncCoordinatorTest, ConnectLocalTabGroup) { … }
TEST_F(TabGroupSyncCoordinatorTest, OnTabGroupAdded) { … }
TEST_F(TabGroupSyncCoordinatorTest, OnTabGroupUpdated) { … }
TEST_F(TabGroupSyncCoordinatorTest, OnTabGroupRemoved) { … }
TEST_F(TabGroupSyncCoordinatorTest, OnTabGroupRemovedWithSyncId) { … }
TEST_F(TabGroupSyncCoordinatorTest, OnTabGroupAddedFromLocal) { … }
TEST_F(TabGroupSyncCoordinatorTest, OnTabGroupUpdatedFromLocal) { … }
TEST_F(TabGroupSyncCoordinatorTest, OnTabGroupRemovedFromLocal) { … }
}