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

Unified Diff: chrome/browser/ui/cocoa/autofill/autofill_overlay_controller_unittest.mm

Issue 23674004: [rAC, OSX] Add overlay shield for interstitials/waits. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Final tweaks. Created 7 years, 3 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
« no previous file with comments | « chrome/browser/ui/cocoa/autofill/autofill_overlay_controller.mm ('k') | chrome/chrome_browser_ui.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/cocoa/autofill/autofill_overlay_controller_unittest.mm
diff --git a/chrome/browser/ui/cocoa/autofill/autofill_overlay_controller_unittest.mm b/chrome/browser/ui/cocoa/autofill/autofill_overlay_controller_unittest.mm
new file mode 100644
index 0000000000000000000000000000000000000000..1cbd77065ab499d23664d2a56d5a7375c886279f
--- /dev/null
+++ b/chrome/browser/ui/cocoa/autofill/autofill_overlay_controller_unittest.mm
@@ -0,0 +1,41 @@
+// Copyright 2013 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.
+
+#import "chrome/browser/ui/cocoa/autofill/autofill_overlay_controller.h"
+
+#include "base/mac/scoped_nsobject.h"
+#include "chrome/browser/ui/autofill/mock_autofill_dialog_view_delegate.h"
+#include "testing/gmock/include/gmock/gmock.h"
+#include "testing/gtest/include/gtest/gtest.h"
+#include "testing/gtest_mac.h"
+#import "ui/base/test/ui_cocoa_test_helper.h"
+
+namespace {
+
+class AutofillOverlayControllerTest : public ui::CocoaTest {
+ public:
+ virtual void SetUp() {
+ CocoaTest::SetUp();
+ controller_.reset(
+ [[AutofillOverlayController alloc] initWithDelegate:&delegate_]);
+ [[test_window() contentView] addSubview:[controller_ view]];
+ }
+
+ protected:
+ base::scoped_nsobject<AutofillOverlayController> controller_;
+ testing::NiceMock<autofill::MockAutofillDialogViewDelegate> delegate_;
+};
+
+} // namespace
+
+TEST_VIEW(AutofillOverlayControllerTest, [controller_ view])
+
+TEST_F(AutofillOverlayControllerTest, Subviews) {
+ NSView* view = [controller_ view];
+ ASSERT_EQ(1U, [[view subviews] count]);
+
+ EXPECT_TRUE([view isKindOfClass:[NSBox class]]);
+ EXPECT_TRUE([[[view subviews] objectAtIndex:0] isMemberOfClass:
+ [NSView class]]);
+}
« no previous file with comments | « chrome/browser/ui/cocoa/autofill/autofill_overlay_controller.mm ('k') | chrome/chrome_browser_ui.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698