summaryrefslogtreecommitdiff
path: root/chromium/components/image_fetcher/request_metadata_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/image_fetcher/request_metadata_unittest.cc')
-rw-r--r--chromium/components/image_fetcher/request_metadata_unittest.cc39
1 files changed, 0 insertions, 39 deletions
diff --git a/chromium/components/image_fetcher/request_metadata_unittest.cc b/chromium/components/image_fetcher/request_metadata_unittest.cc
deleted file mode 100644
index ba87ba08d8f..00000000000
--- a/chromium/components/image_fetcher/request_metadata_unittest.cc
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright 2017 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "components/image_fetcher/request_metadata.h"
-
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace image_fetcher {
-
-TEST(RequestMetadataTest, Equality) {
- RequestMetadata rhs;
- RequestMetadata lhs;
- rhs.mime_type = "testMimeType";
- lhs.mime_type = "testMimeType";
- rhs.response_code = 1;
- lhs.response_code = 1;
-
- EXPECT_EQ(rhs, lhs);
-}
-
-TEST(RequestMetadataTest, NoEquality) {
- RequestMetadata rhs;
- RequestMetadata lhs;
- rhs.mime_type = "testMimeType";
- lhs.mime_type = "testMimeType";
- rhs.response_code = 1;
- lhs.response_code = 1;
-
- lhs.mime_type = "testOtherMimeType";
- EXPECT_NE(rhs, lhs);
- lhs.mime_type = "testMimeType";
-
- lhs.response_code = 2;
- EXPECT_NE(rhs, lhs);
- lhs.response_code = 1;
-}
-
-} // namespace image_fetcher