Skip to content

Commit f2aed22

Browse files
committed
Update ResultsTree tests
1 parent 52845a1 commit f2aed22

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

gui/test/resultstree/testresultstree.cpp

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,12 @@ void ThreadHandler::stop() {
9393
void ThreadHandler::threadDone() {
9494
throw 1;
9595
}
96+
void ThreadHandler::startCheck(CheckThread::Details /*unused*/) {
97+
throw 1;
98+
}
99+
void ThreadHandler::finishCheck(CheckThread::Details /*unused*/) {
100+
throw 1;
101+
}
96102
Application& ApplicationList::getApplication(const int /*unused*/) {
97103
throw 1;
98104
}
@@ -110,7 +116,7 @@ QString XmlReport::unquoteMessage(const QString &message) {
110116
return message;
111117
}
112118
XmlReport::XmlReport(const QString& filename) : Report(filename) {}
113-
void ThreadResult::fileChecked(const QString & /*unused*/) {
119+
void ThreadResult::finishCheck(CheckThread::Details /*unused*/) {
114120
throw 1;
115121
}
116122
void ThreadResult::reportOut(const std::string & /*unused*/, Color /*unused*/) {

0 commit comments

Comments
 (0)