summaryrefslogtreecommitdiffstats
path: root/dbus/util_unittest.cc
blob: 4bf6efa2aee585f5220b7510869ed903e350fa8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2014 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 "dbus/util.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace dbus {

TEST(UtilTest, GetAbsoluteMemberName) {
  EXPECT_EQ("InterfaceName.MemberName",
            GetAbsoluteMemberName("InterfaceName", "MemberName"));
  EXPECT_EQ(".", GetAbsoluteMemberName("", ""));
}

}  // namespace dbus