Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(239)

Side by Side Diff: components/sync/api/attachments/attachment_id_unittest.cc

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "sync/api/attachments/attachment.h" 5 #include "components/sync/api/attachments/attachment.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "testing/gtest/include/gtest/gtest.h" 9 #include "testing/gtest/include/gtest/gtest.h"
10 10
11 namespace syncer { 11 namespace syncer {
12 12
13 class AttachmentIdTest : public testing::Test {}; 13 class AttachmentIdTest : public testing::Test {};
14 14
15 TEST_F(AttachmentIdTest, Create_IsUnique) { 15 TEST_F(AttachmentIdTest, Create_IsUnique) {
(...skipping 17 matching lines...) Expand all
33 33
34 EXPECT_NE(id1, id2); 34 EXPECT_NE(id1, id2);
35 if (id1 < id2) { 35 if (id1 < id2) {
36 EXPECT_FALSE(id2 < id1); 36 EXPECT_FALSE(id2 < id1);
37 } else { 37 } else {
38 EXPECT_TRUE(id2 < id1); 38 EXPECT_TRUE(id2 < id1);
39 } 39 }
40 } 40 }
41 41
42 } // namespace syncer 42 } // namespace syncer
OLDNEW
« no previous file with comments | « components/sync/api/attachments/attachment_id.cc ('k') | components/sync/api/attachments/attachment_metadata.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698