1
0
forked from fsfw/fsfw

improving mocks

This commit is contained in:
2022-07-25 14:31:57 +02:00
parent 1a7d7b172b
commit 9ee6da47e9
8 changed files with 64 additions and 13 deletions

View File

@ -0,0 +1,13 @@
#include "InternalErrorReporterMock.h"
InternalErrorReporterMock::InternalErrorReporterMock() = default;
void InternalErrorReporterMock::queueMessageNotSent() {
queueMsgNotSentCallCnt++;
}
void InternalErrorReporterMock::lostTm() {
lostTmCallCnt++;
}
void InternalErrorReporterMock::storeFull() {
storeFullCallCnt++;
}