| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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/image_fetcher/request_metadata.h" | 5 #include "components/image_fetcher/request_metadata.h" |
| 6 | 6 |
| 7 #include "testing/gtest/include/gtest/gtest.h" | 7 #include "testing/gtest/include/gtest/gtest.h" |
| 8 | 8 |
| 9 namespace image_fetcher { | 9 namespace image_fetcher { |
| 10 | 10 |
| 11 TEST(RequestMetadataTest, Equality) { | 11 TEST(RequestMetadataTest, Equality) { |
| 12 RequestMetadata rhs; | 12 RequestMetadata rhs; |
| 13 RequestMetadata lhs; | 13 RequestMetadata lhs; |
| 14 rhs.mime_type = "testMimeType"; | 14 rhs.mime_type = "testMimeType"; |
| 15 lhs.mime_type = "testMimeType"; | 15 lhs.mime_type = "testMimeType"; |
| 16 rhs.response_code = 1; | |
| 17 lhs.response_code = 1; | |
| 18 | 16 |
| 19 EXPECT_EQ(rhs, lhs); | 17 EXPECT_EQ(rhs, lhs); |
| 20 } | 18 } |
| 21 | 19 |
| 22 TEST(RequestMetadataTest, NoEquality) { | 20 TEST(RequestMetadataTest, NoEquality) { |
| 23 RequestMetadata rhs; | 21 RequestMetadata rhs; |
| 24 RequestMetadata lhs; | 22 RequestMetadata lhs; |
| 25 rhs.mime_type = "testMimeType"; | 23 rhs.mime_type = "testMimeType"; |
| 26 lhs.mime_type = "testMimeType"; | 24 lhs.mime_type = "testOtherMimeType"; |
| 27 rhs.response_code = 1; | |
| 28 lhs.response_code = 1; | |
| 29 | 25 |
| 30 lhs.mime_type = "testOtherMimeType"; | |
| 31 EXPECT_NE(rhs, lhs); | 26 EXPECT_NE(rhs, lhs); |
| 32 lhs.mime_type = "testMimeType"; | |
| 33 | |
| 34 lhs.response_code = 2; | |
| 35 EXPECT_NE(rhs, lhs); | |
| 36 lhs.response_code = 1; | |
| 37 } | 27 } |
| 38 | 28 |
| 39 } // namespace image_fetcher | 29 } // namespace image_fetcher |
| OLD | NEW |