Implement Report persistency

Now Report properties are stored in non-volatile memory. It allows
to restore Report after system restart. Persistency of a report is
controlled by Persistency property in Report interface.

Tested:
 - Passed unit tests
 - Verified that report is stored in /var/lib/telemetry dir
 - Verified that report is restored from storage after telemetry
   service start

Signed-off-by: Wludzik, Jozef <jozef.wludzik@intel.com>
Change-Id: Iccfe21603eecffc4e174a4403f699b03de320db9
diff --git a/tests/src/printers/interfaces/json_storage.hpp b/tests/src/printers/interfaces/json_storage.hpp
new file mode 100644
index 0000000..b5d4004
--- /dev/null
+++ b/tests/src/printers/interfaces/json_storage.hpp
@@ -0,0 +1,19 @@
+#pragma once
+
+#include "interfaces/json_storage.hpp"
+
+#include <gmock/gmock.h>
+
+namespace interfaces
+{
+
+inline void PrintTo(const JsonStorage::FilePath& o, std::ostream* os)
+{
+    (*os) << static_cast<std::filesystem::path>(o);
+}
+inline void PrintTo(const JsonStorage::DirectoryPath& o, std::ostream* os)
+{
+    (*os) << static_cast<std::filesystem::path>(o);
+}
+
+} // namespace interfaces
\ No newline at end of file