2022-07-25 14:31:57 +02:00
|
|
|
#include "InternalErrorReporterMock.h"
|
|
|
|
|
|
|
|
InternalErrorReporterMock::InternalErrorReporterMock() = default;
|
|
|
|
|
2022-07-25 19:36:56 +02:00
|
|
|
void InternalErrorReporterMock::queueMessageNotSent() { queueMsgNotSentCallCnt++; }
|
|
|
|
void InternalErrorReporterMock::lostTm() { lostTmCallCnt++; }
|
|
|
|
void InternalErrorReporterMock::storeFull() { storeFullCallCnt++; }
|
2022-07-25 20:31:06 +02:00
|
|
|
|
|
|
|
void InternalErrorReporterMock::reset() {
|
|
|
|
queueMsgNotSentCallCnt = 0;
|
|
|
|
lostTmCallCnt = 0;
|
|
|
|
storeFullCallCnt = 0;
|
|
|
|
}
|