chromium/components/sync/model/sync_change_unittest.cc

// Copyright 2012 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/model/sync_change.h"

#include <memory>
#include <utility>

#include "base/time/time.h"
#include "base/values.h"
#include "components/sync/protocol/entity_specifics.pb.h"
#include "components/sync/protocol/preference_specifics.pb.h"
#include "components/sync/protocol/proto_value_conversions.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace syncer {

namespace {

TEST(SyncChangeTest, LocalDelete) {}

TEST(SyncChangeTest, LocalUpdate) {}

TEST(SyncChangeTest, LocalAdd) {}

TEST(SyncChangeTest, SyncerChanges) {}

TEST(SyncChangeTest, MoveIsCopy) {}

}  // namespace

}  // namespace syncer