14 lines
327 B
C++
14 lines
327 B
C++
|
#include "InternalErrorReporterMock.h"
|
||
|
|
||
|
InternalErrorReporterMock::InternalErrorReporterMock() = default;
|
||
|
|
||
|
void InternalErrorReporterMock::queueMessageNotSent() {
|
||
|
queueMsgNotSentCallCnt++;
|
||
|
}
|
||
|
void InternalErrorReporterMock::lostTm() {
|
||
|
lostTmCallCnt++;
|
||
|
}
|
||
|
void InternalErrorReporterMock::storeFull() {
|
||
|
storeFullCallCnt++;
|
||
|
}
|