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

Unified Diff: ceee/ie/plugin/toolband/tool_band_unittest.cc

Issue 5271011: Avoid double-setting of the tool band ID in the CEEE executors manager.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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 | « ceee/ie/plugin/toolband/tool_band.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ceee/ie/plugin/toolband/tool_band_unittest.cc
===================================================================
--- ceee/ie/plugin/toolband/tool_band_unittest.cc (revision 67716)
+++ ceee/ie/plugin/toolband/tool_band_unittest.cc (working copy)
@@ -511,8 +511,15 @@
SetArgumentPointee<0>(5), Return(S_OK)));
EXPECT_CALL(*mock_bho, SetToolBandSessionId(5)).WillOnce(Return(S_OK));
EXPECT_EQ(S_OK, tool_band_->CallSendSessionIdToBho(mock_bho_with_site));
+ // Second call should not do anything.
+ EXPECT_EQ(S_FALSE, tool_band_->CallSendSessionIdToBho(mock_bho_with_site));
+}
- // Test error handling.
+TEST_F(ToolBandTest, SendSessionIdToBhoErrorHandling) {
+ MockCeeeBho* mock_bho;
+ CComPtr<IObjectWithSite> mock_bho_with_site;
+ ASSERT_HRESULT_SUCCEEDED(
+ MockCeeeBho::CreateInitialized(&mock_bho, &mock_bho_with_site));
EXPECT_CALL(*tool_band_, GetSessionId(_)).WillOnce(Return(E_FAIL));
EXPECT_EQ(E_FAIL, tool_band_->CallSendSessionIdToBho(mock_bho_with_site));
« no previous file with comments | « ceee/ie/plugin/toolband/tool_band.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698