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

Unified Diff: sync/js/sync_js_controller_unittest.cc

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 5 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 | « sync/js/sync_js_controller.cc ('k') | sync/protocol/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/js/sync_js_controller_unittest.cc
diff --git a/sync/js/sync_js_controller_unittest.cc b/sync/js/sync_js_controller_unittest.cc
deleted file mode 100644
index bb834c535fea0db57732283b07b50e4af863d059..0000000000000000000000000000000000000000
--- a/sync/js/sync_js_controller_unittest.cc
+++ /dev/null
@@ -1,61 +0,0 @@
-// Copyright (c) 2012 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 "sync/js/sync_js_controller.h"
-
-#include "base/run_loop.h"
-#include "base/values.h"
-#include "sync/js/js_event_details.h"
-#include "sync/js/js_test_util.h"
-#include "testing/gmock/include/gmock/gmock.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace syncer {
-namespace {
-
-using ::testing::_;
-using ::testing::InSequence;
-using ::testing::Mock;
-using ::testing::StrictMock;
-
-class SyncJsControllerTest : public testing::Test {
- protected:
- void PumpLoop() {
- base::RunLoop().RunUntilIdle();
- }
-
- private:
- base::MessageLoop message_loop_;
-};
-
-TEST_F(SyncJsControllerTest, Events) {
- InSequence dummy;
- SyncJsController sync_js_controller;
-
- base::DictionaryValue details_dict1, details_dict2;
- details_dict1.SetString("foo", "bar");
- details_dict2.SetInteger("baz", 5);
- JsEventDetails details1(&details_dict1), details2(&details_dict2);
-
- StrictMock<MockJsEventHandler> event_handler1, event_handler2;
- EXPECT_CALL(event_handler1, HandleJsEvent("event", HasDetails(details1)));
- EXPECT_CALL(event_handler2, HandleJsEvent("event", HasDetails(details1)));
- EXPECT_CALL(event_handler1,
- HandleJsEvent("anotherevent", HasDetails(details2)));
- EXPECT_CALL(event_handler2,
- HandleJsEvent("anotherevent", HasDetails(details2)));
-
- sync_js_controller.AddJsEventHandler(&event_handler1);
- sync_js_controller.AddJsEventHandler(&event_handler2);
- sync_js_controller.HandleJsEvent("event", details1);
- sync_js_controller.HandleJsEvent("anotherevent", details2);
- sync_js_controller.RemoveJsEventHandler(&event_handler1);
- sync_js_controller.RemoveJsEventHandler(&event_handler2);
- sync_js_controller.HandleJsEvent("droppedevent", details2);
-
- PumpLoop();
-}
-
-} // namespace
-} // namespace syncer
« no previous file with comments | « sync/js/sync_js_controller.cc ('k') | sync/protocol/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698