Add error to messages window if a requested regression test is not found.

This commit is contained in:
Jacob Støren 2018-02-05 16:09:44 +01:00
parent 0b0e60135c
commit 7dbffd0075

View File

@ -2155,6 +2155,10 @@ void RiaApplication::runRegressionTest(const QString& testRootPath, QStringList*
logInfoTextWithTimeInSeconds(timeStamp, "Completed test :" + testCaseFolder.absolutePath());
}
else
{
RiaLogging::error("Could not find a regression test file named : " + testCaseFolder.absolutePath() + "/" + regTestProjectName + ".rsp");
}
}
RiaLogging::info("\n");