Added completion message.

This commit is contained in:
NissimHadar 2018-03-04 17:36:20 -08:00
parent b32ad2f69c
commit 913ad569c0

View file

@ -234,6 +234,13 @@ void Test::startTestsEvaluation() {
void Test::finishTestsEvaluation(bool interactiveMode, QProgressBar* progressBar) {
bool success = compareImageLists(interactiveMode, progressBar);
if (success) {
messageBox.information(0, "Success", "All images are as expected");
} else {
messageBox.information(0, "Failure", "One or more images are not as expected");
}
zipAndDeleteTestResultsFolder();
}