#include "components/sync/service/backend_migrator.h"
#include <memory>
#include "base/run_loop.h"
#include "base/test/mock_callback.h"
#include "base/test/task_environment.h"
#include "components/sync/test/data_type_manager_mock.h"
#include "components/sync/test/data_type_test_util.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
_;
Eq;
Mock;
NiceMock;
Return;
namespace syncer {
class SyncBackendMigratorTest : public testing::Test { … };
class MockMigrationObserver : public MigrationObserver { … };
TEST_F(SyncBackendMigratorTest, Sanity) { … }
TEST_F(SyncBackendMigratorTest, MigrateNigori) { … }
TEST_F(SyncBackendMigratorTest, WaitToStart) { … }
TEST_F(SyncBackendMigratorTest, RestartMigration) { … }
TEST_F(SyncBackendMigratorTest, InterruptedWhileDisablingTypes) { … }
TEST_F(SyncBackendMigratorTest, WaitingForPurge) { … }
TEST_F(SyncBackendMigratorTest, ConfigureFailure) { … }
}