UnitTests: Add mockup for Core::ICore::userResourcePath()

Otherwise the unit tests does not linked any more.

Change-Id: I1d756b8bef18d65174a8924a15995cc179af61f3
Reviewed-by: Marco Bubke <marco.bubke@qt.io>
This commit is contained in:
Marco Bubke
2017-11-29 12:01:55 +01:00
parent c1aa745813
commit 67767f9925

View File

@@ -0,0 +1,10 @@
#include <QDir>
namespace Core {
namespace ICore {
static QString userResourcePath()
{
return QDir::tempPath();
}
} // namespace ICore
} // namespace Core