summaryrefslogtreecommitdiffstats
path: root/chrome/browser/mach_broker_mac_unittest.cc
diff options
context:
space:
mode:
authorthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-21 17:44:20 +0000
committerthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-21 17:44:20 +0000
commitb2e8e08818f3542c9043aececfbc913499226183 (patch)
tree84f4bcf67581c8239424420ba831aa8031db382f /chrome/browser/mach_broker_mac_unittest.cc
parent6b4a530327976d8717dd007cf1403ee453148856 (diff)
downloadchromium_src-b2e8e08818f3542c9043aececfbc913499226183.zip
chromium_src-b2e8e08818f3542c9043aececfbc913499226183.tar.gz
chromium_src-b2e8e08818f3542c9043aececfbc913499226183.tar.bz2
Mac: Create a pid->task_t mapping in the browser process.
Since nothing writes to this map in the browser atm, this does not have any visible effect. BUG=13156,25454 TEST=unittest Review URL: http://codereview.chromium.org/501138 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@35092 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/mach_broker_mac_unittest.cc')
-rw-r--r--chrome/browser/mach_broker_mac_unittest.cc24
1 files changed, 24 insertions, 0 deletions
diff --git a/chrome/browser/mach_broker_mac_unittest.cc b/chrome/browser/mach_broker_mac_unittest.cc
new file mode 100644
index 0000000..56cc2ae2
--- /dev/null
+++ b/chrome/browser/mach_broker_mac_unittest.cc
@@ -0,0 +1,24 @@
+// Copyright (c) 2009 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/mach_broker_mac.h"
+
+#include "testing/gtest/include/gtest/gtest.h"
+
+class MachBrokerTest : public testing::Test {
+ public:
+ MachBroker broker_;
+};
+
+TEST_F(MachBrokerTest, Setter) {
+ broker_.RegisterPid(1u, MachBroker::MachInfo().SetTask(2u));
+ EXPECT_EQ(2u, broker_.TaskForPid(1));
+ EXPECT_EQ(0u, broker_.TaskForPid(2));
+}
+
+TEST_F(MachBrokerTest, Invalidate) {
+ broker_.RegisterPid(1u, MachBroker::MachInfo().SetTask(2));
+ broker_.Invalidate(1u);
+ EXPECT_EQ(0u, broker_.TaskForPid(1));
+}