PEL: Add location code related stubs

Add 2 location code related API stubs to DataInterface:
* expandLocationCode - Fills in the 'Ufcs' template with the actual
                       feature code and SN.
* getInventoryFromLocCode - Returns the inventory D-Bus object path
                            that that location code represents.

These will eventually wrap D-Bus method calls to the VPD daemon when
that gets implemented.  In the meantime, these can't return
valid data on real hardware but they can be mocked to do so.

Signed-off-by: Matt Spinler <spinler@us.ibm.com>
Change-Id: I955d8bac626d45ffbed63c29c497ad0db37d9b21
diff --git a/test/openpower-pels/mocks.hpp b/test/openpower-pels/mocks.hpp
index be3291d..e291966 100644
--- a/test/openpower-pels/mocks.hpp
+++ b/test/openpower-pels/mocks.hpp
@@ -36,6 +36,10 @@
                 (const override));
     MOCK_METHOD(const std::vector<std::string>&, getSystemNames, (),
                 (const override));
+    MOCK_METHOD(std::string, expandLocationCode, (const std::string&, uint16_t),
+                (const override));
+    MOCK_METHOD(std::string, getInventoryFromLocCode,
+                (const std::string&, uint16_t), (const override));
 
     void changeHostState(bool newState)
     {