chromium/chrome/browser/tab_group_sync/tab_group_sync_service_factory_unittest.cc

// Copyright 2024 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/tab_group_sync/tab_group_sync_service_factory.h"

#include <memory>

#include "chrome/test/base/testing_profile.h"
#include "content/public/test/browser_task_environment.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace tab_groups {
namespace {

class TabGroupSyncServiceFactoryTest : public testing::Test {};

TEST_F(TabGroupSyncServiceFactoryTest, ServiceCreatedInRegularProfile) {}

TEST_F(TabGroupSyncServiceFactoryTest, ServiceNotCreatedInIncognito) {}

}  // namespace
}  // namespace tab_groups