blob: 4549c0de332149f22cdac6fac2383f4d933fc3cc [file] [log] [blame]
George Liu682ee182020-12-25 15:24:33 +08001#include "../custom_dbus.hpp"
2
3#include <gtest/gtest.h>
4
5using namespace pldm::dbus;
6TEST(CustomDBus, LocationCode)
7{
8 std::string tmpPath = "/abc/def";
9 std::string locationCode = "testLocationCode";
10
11 CustomDBus::getCustomDBus().setLocationCode(tmpPath, locationCode);
12 auto retLocationCode = CustomDBus::getCustomDBus().getLocationCode(tmpPath);
13
14 EXPECT_NE(retLocationCode, std::nullopt);
15 EXPECT_EQ(locationCode, retLocationCode);
16}