#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) { … }
}
}