chromium/components/sync/service/glue/sync_transport_data_prefs_unittest.cc

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

#include "components/sync/service/glue/sync_transport_data_prefs.h"

#include <memory>
#include <utility>

#include "base/test/scoped_feature_list.h"
#include "base/time/time.h"
#include "components/prefs/pref_registry_simple.h"
#include "components/prefs/testing_pref_service.h"
#include "components/sync/base/features.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace syncer {

namespace {

class SyncTransportDataPrefsTest : public testing::Test {};

TEST_F(SyncTransportDataPrefsTest, PollInterval) {}

TEST_F(SyncTransportDataPrefsTest, ResetsVeryShortPollInterval) {}

TEST_F(SyncTransportDataPrefsTest, LastSyncTime) {}

TEST_F(SyncTransportDataPrefsTest, Clear) {}

TEST_F(SyncTransportDataPrefsTest, ValuesAreAccountScoped) {}

}  // namespace

}  // namespace syncer