utils: Add function to get the latest version

This repo does not know which PSU version is the latest, and it lets the
vendor tool to decide which one is the latest.

This commit defines PSU_VERSION_COMPARE_UTIL which is expected to be a
tool that accepts arguments of a list of versions, and returns the
latest version string.

Tested: Put and configure to use the example get_latest_version on
        Witherspoon, verify the versionId with a larger version string
        is returned.

Signed-off-by: Lei YU <mine260309@gmail.com>
Change-Id: Ic5a10d3724cf6a98b3979486c72d54f8deac7038
diff --git a/test/test_item_updater.cpp b/test/test_item_updater.cpp
index ed55906..b4ecafc 100644
--- a/test/test_item_updater.cpp
+++ b/test/test_item_updater.cpp
@@ -65,6 +65,7 @@
 
 TEST_F(TestItemUpdater, ctordtor)
 {
+    EXPECT_CALL(mockedUtils, getLatestVersion(_)).Times(1);
     itemUpdater = std::make_unique<ItemUpdater>(mockedBus, dBusPath);
 }