Index: chrome/browser/sync/util/channel_unittest.cc |
diff --git a/chrome/browser/sync/util/channel_unittest.cc b/chrome/browser/sync/util/channel_unittest.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f2317dcc979b0449f8e39158c0a1f88021e987a4 |
--- /dev/null |
+++ b/chrome/browser/sync/util/channel_unittest.cc |
@@ -0,0 +1,32 @@ |
+// Copyright (c) 2010 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 "chrome/browser/sync/util/channel.h" |
+#include "testing/gtest/include/gtest/gtest.h" |
+ |
+struct TestEvent { |
+ explicit TestEvent(int foo) : data(foo) {} |
+ int data; |
+}; |
+ |
+class TestObserver : public browser_sync::ChannelEventHandler<TestEvent> { |
+ public: |
+ virtual void HandleChannelEvent(const TestEvent& event) { |
+ delete hookup; |
+ hookup = 0; |
+ } |
+ |
+ browser_sync::ChannelHookup<TestEvent>* hookup; |
+}; |
+ |
+TEST(ChannelTest, RemoveOnNotify) { |
+ browser_sync::Channel<TestEvent> channel; |
+ TestObserver observer; |
+ |
+ observer.hookup = channel.AddObserver(&observer); |
+ |
+ ASSERT_TRUE(0 != observer.hookup); |
+ channel.Notify(TestEvent(1)); |
+ ASSERT_EQ(0, observer.hookup); |
+} |