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/image_fetcher/request_metadata_unittest.cc

Issue 2761303002: Move common ImageFetcher component files to core/ (Closed)
Patch Set: Rebased. Created 3 years, 9 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
« no previous file with comments | « components/image_fetcher/request_metadata.cc ('k') | components/ntp_snippets/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "components/image_fetcher/request_metadata.h"
6
7 #include "testing/gtest/include/gtest/gtest.h"
8
9 namespace image_fetcher {
10
11 TEST(RequestMetadataTest, Equality) {
12 RequestMetadata rhs;
13 RequestMetadata lhs;
14 rhs.mime_type = "testMimeType";
15 lhs.mime_type = "testMimeType";
16 rhs.http_response_code = 1;
17 lhs.http_response_code = 1;
18 rhs.from_http_cache = true;
19 lhs.from_http_cache = true;
20
21 EXPECT_EQ(rhs, lhs);
22 }
23
24 TEST(RequestMetadataTest, NoEquality) {
25 RequestMetadata rhs;
26 RequestMetadata lhs;
27 rhs.mime_type = "testMimeType";
28 lhs.mime_type = "testMimeType";
29 rhs.http_response_code = 1;
30 lhs.http_response_code = 1;
31 rhs.from_http_cache = true;
32 lhs.from_http_cache = true;
33
34 lhs.mime_type = "testOtherMimeType";
35 EXPECT_NE(rhs, lhs);
36 lhs.mime_type = "testMimeType";
37
38 lhs.http_response_code = 2;
39 EXPECT_NE(rhs, lhs);
40 lhs.http_response_code = 1;
41
42 lhs.from_http_cache = false;
43 EXPECT_NE(rhs, lhs);
44 lhs.from_http_cache = true;
45 }
46
47 } // namespace image_fetcher
OLDNEW
« no previous file with comments | « components/image_fetcher/request_metadata.cc ('k') | components/ntp_snippets/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698