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

Unified Diff: ios/chrome/browser/ui/content_suggestions/content_suggestions_favicon_item_unittest.mm

Issue 2644123003: Move ios/ui/suggestions to ios/ui/content_suggestions (Closed)
Patch Set: Rebase Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: ios/chrome/browser/ui/content_suggestions/content_suggestions_favicon_item_unittest.mm
diff --git a/ios/chrome/browser/ui/suggestions/suggestions_favicon_item_unittest.mm b/ios/chrome/browser/ui/content_suggestions/content_suggestions_favicon_item_unittest.mm
similarity index 55%
rename from ios/chrome/browser/ui/suggestions/suggestions_favicon_item_unittest.mm
rename to ios/chrome/browser/ui/content_suggestions/content_suggestions_favicon_item_unittest.mm
index 494dfe413abf3885b02a6793a7ad32961d1b3c38..d59ecec1ecb022781ac84f84647387131322cc53 100644
--- a/ios/chrome/browser/ui/suggestions/suggestions_favicon_item_unittest.mm
+++ b/ios/chrome/browser/ui/content_suggestions/content_suggestions_favicon_item_unittest.mm
@@ -2,10 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#import "ios/chrome/browser/ui/suggestions/suggestions_favicon_item.h"
+#import "ios/chrome/browser/ui/content_suggestions/content_suggestions_favicon_item.h"
#include "base/mac/foundation_util.h"
-#import "ios/chrome/browser/ui/suggestions/suggestions_favicon_internal_cell.h"
+#import "ios/chrome/browser/ui/content_suggestions/content_suggestions_favicon_internal_cell.h"
#include "testing/gtest/include/gtest/gtest.h"
#import "third_party/ocmock/OCMock/OCMock.h"
@@ -15,30 +15,31 @@
namespace {
-SuggestionsFaviconInternalCell* GetInnerCell(
+ContentSuggestionsFaviconInternalCell* GetInnerCell(
NSInteger cellIndex,
- SuggestionsFaviconCell* outerCell) {
+ ContentSuggestionsFaviconCell* outerCell) {
UICollectionViewCell* innerCell = [outerCell.collectionView.dataSource
collectionView:outerCell.collectionView
cellForItemAtIndexPath:[NSIndexPath indexPathForItem:cellIndex
inSection:0]];
- EXPECT_EQ([SuggestionsFaviconInternalCell class], [innerCell class]);
- return base::mac::ObjCCastStrict<SuggestionsFaviconInternalCell>(innerCell);
+ EXPECT_EQ([ContentSuggestionsFaviconInternalCell class], [innerCell class]);
+ return base::mac::ObjCCastStrict<ContentSuggestionsFaviconInternalCell>(
+ innerCell);
}
#pragma mark - Tests
// Tests that configureCell: set all the fields of the cell.
-TEST(SuggestionsFaviconItemTest, CellIsConfigured) {
- id delegateMock =
- [OCMockObject mockForProtocol:@protocol(SuggestionsFaviconCellDelegate)];
- SuggestionsFaviconItem* item =
- [[SuggestionsFaviconItem alloc] initWithType:0];
+TEST(ContentSuggestionsFaviconItemTest, CellIsConfigured) {
+ id delegateMock = [OCMockObject
+ mockForProtocol:@protocol(ContentSuggestionsFaviconCellDelegate)];
+ ContentSuggestionsFaviconItem* item =
+ [[ContentSuggestionsFaviconItem alloc] initWithType:0];
item.delegate = delegateMock;
- SuggestionsFaviconCell* cell = [[[item cellClass] alloc] init];
- ASSERT_EQ([SuggestionsFaviconCell class], [cell class]);
+ ContentSuggestionsFaviconCell* cell = [[[item cellClass] alloc] init];
+ ASSERT_EQ([ContentSuggestionsFaviconCell class], [cell class]);
[item configureCell:cell];
EXPECT_EQ(delegateMock, cell.delegate);
@@ -46,9 +47,9 @@ TEST(SuggestionsFaviconItemTest, CellIsConfigured) {
// Tests that the favicon added to the item are correctly passed to the inner
// collection view.
-TEST(SuggestionsFaviconItemTest, AddAFavicon) {
- SuggestionsFaviconItem* item =
- [[SuggestionsFaviconItem alloc] initWithType:0];
+TEST(ContentSuggestionsFaviconItemTest, AddAFavicon) {
+ ContentSuggestionsFaviconItem* item =
+ [[ContentSuggestionsFaviconItem alloc] initWithType:0];
UIImage* image1 = [[UIImage alloc] init];
NSString* title1 = @"testTitle1";
UIImage* image2 = [[UIImage alloc] init];
@@ -56,15 +57,17 @@ TEST(SuggestionsFaviconItemTest, AddAFavicon) {
[item addFavicon:image1 withTitle:title1];
[item addFavicon:image2 withTitle:title2];
- SuggestionsFaviconCell* cell = [[[item cellClass] alloc] init];
+ ContentSuggestionsFaviconCell* cell = [[[item cellClass] alloc] init];
[item configureCell:cell];
- SuggestionsFaviconInternalCell* faviconInternalCell1 = GetInnerCell(0, cell);
+ ContentSuggestionsFaviconInternalCell* faviconInternalCell1 =
+ GetInnerCell(0, cell);
EXPECT_EQ(image1, faviconInternalCell1.faviconView.image);
EXPECT_TRUE([title1 isEqualToString:faviconInternalCell1.titleLabel.text]);
- SuggestionsFaviconInternalCell* faviconInternalCell2 = GetInnerCell(1, cell);
+ ContentSuggestionsFaviconInternalCell* faviconInternalCell2 =
+ GetInnerCell(1, cell);
EXPECT_EQ(image2, faviconInternalCell2.faviconView.image);
EXPECT_TRUE([title2 isEqualToString:faviconInternalCell2.titleLabel.text]);
}

Powered by Google App Engine
This is Rietveld 408576698