OLD | NEW |
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 "components/sync/api/attachments/attachment_metadata.h" | 5 #include "components/sync/model/attachments/attachment_metadata.h" |
6 | 6 |
7 #include <stdint.h> | 7 #include <stdint.h> |
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 AttachmentMetadataTest : public testing::Test {}; | 13 class AttachmentMetadataTest : public testing::Test {}; |
14 | 14 |
15 TEST_F(AttachmentMetadataTest, Create) { | 15 TEST_F(AttachmentMetadataTest, Create) { |
16 size_t size = 42; | 16 size_t size = 42; |
17 uint32_t crc32c = 2349829; | 17 uint32_t crc32c = 2349829; |
18 AttachmentId id = AttachmentId::Create(size, crc32c); | 18 AttachmentId id = AttachmentId::Create(size, crc32c); |
19 AttachmentMetadata metadata(id, size); | 19 AttachmentMetadata metadata(id, size); |
20 EXPECT_EQ(metadata.GetId(), id); | 20 EXPECT_EQ(metadata.GetId(), id); |
21 EXPECT_EQ(metadata.GetSize(), size); | 21 EXPECT_EQ(metadata.GetSize(), size); |
22 } | 22 } |
23 | 23 |
24 } // namespace syncer | 24 } // namespace syncer |
OLD | NEW |