mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
Added completion message.
This commit is contained in:
parent
b32ad2f69c
commit
913ad569c0
1 changed files with 7 additions and 0 deletions
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue