improving mocks
This commit is contained in:
13
unittests/mocks/InternalErrorReporterMock.cpp
Normal file
13
unittests/mocks/InternalErrorReporterMock.cpp
Normal file
@ -0,0 +1,13 @@
|
||||
#include "InternalErrorReporterMock.h"
|
||||
|
||||
InternalErrorReporterMock::InternalErrorReporterMock() = default;
|
||||
|
||||
void InternalErrorReporterMock::queueMessageNotSent() {
|
||||
queueMsgNotSentCallCnt++;
|
||||
}
|
||||
void InternalErrorReporterMock::lostTm() {
|
||||
lostTmCallCnt++;
|
||||
}
|
||||
void InternalErrorReporterMock::storeFull() {
|
||||
storeFullCallCnt++;
|
||||
}
|
Reference in New Issue
Block a user