| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/sync/sessions_impl/sync_session.h" | 5 #include "components/sync/engine_impl/cycle/sync_cycle.h" |
| 6 #include "components/sync/test/engine/test_id_factory.h" | 6 #include "components/sync/test/engine/test_id_factory.h" |
| 7 #include "testing/gtest/include/gtest/gtest.h" | 7 #include "testing/gtest/include/gtest/gtest.h" |
| 8 | 8 |
| 9 namespace syncer { | 9 namespace syncer { |
| 10 namespace sessions { | |
| 11 | 10 |
| 12 class StatusControllerTest : public testing::Test {}; | 11 class StatusControllerTest : public testing::Test {}; |
| 13 | 12 |
| 14 // This test is useful, as simple as it sounds, due to the copy-paste prone | 13 // This test is useful, as simple as it sounds, due to the copy-paste prone |
| 15 // nature of status_controller.cc (we have had bugs in the past where a set_foo | 14 // nature of status_controller.cc (we have had bugs in the past where a set_foo |
| 16 // method was actually setting |bar_| instead!). | 15 // method was actually setting |bar_| instead!). |
| 17 TEST_F(StatusControllerTest, ReadYourWrites) { | 16 TEST_F(StatusControllerTest, ReadYourWrites) { |
| 18 StatusController status; | 17 StatusController status; |
| 19 | 18 |
| 20 status.set_last_download_updates_result(SYNCER_OK); | 19 status.set_last_download_updates_result(SYNCER_OK); |
| (...skipping 12 matching lines...) Expand all Loading... |
| 33 TEST_F(StatusControllerTest, TotalNumConflictingItems) { | 32 TEST_F(StatusControllerTest, TotalNumConflictingItems) { |
| 34 StatusController status; | 33 StatusController status; |
| 35 EXPECT_EQ(0, status.TotalNumConflictingItems()); | 34 EXPECT_EQ(0, status.TotalNumConflictingItems()); |
| 36 | 35 |
| 37 status.increment_num_server_conflicts(); | 36 status.increment_num_server_conflicts(); |
| 38 status.increment_num_hierarchy_conflicts_by(3); | 37 status.increment_num_hierarchy_conflicts_by(3); |
| 39 status.increment_num_encryption_conflicts_by(2); | 38 status.increment_num_encryption_conflicts_by(2); |
| 40 EXPECT_EQ(6, status.TotalNumConflictingItems()); | 39 EXPECT_EQ(6, status.TotalNumConflictingItems()); |
| 41 } | 40 } |
| 42 | 41 |
| 43 } // namespace sessions | |
| 44 } // namespace syncer | 42 } // namespace syncer |
| OLD | NEW |