1 #include "../custom_dbus.hpp" 2 3 #include <gtest/gtest.h> 4 5 using namespace pldm::dbus; 6 TEST(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 } 17