fsfw/unittests/mocks/InternalErrorReporterMock.cpp
Robin Mueller 586993c081
Some checks failed
fsfw/fsfw/pipeline/pr-development There was a failure building this commit
completed send helper tests
2022-07-25 20:31:06 +02:00

14 lines
441 B
C++

#include "InternalErrorReporterMock.h"
InternalErrorReporterMock::InternalErrorReporterMock() = default;
void InternalErrorReporterMock::queueMessageNotSent() { queueMsgNotSentCallCnt++; }
void InternalErrorReporterMock::lostTm() { lostTmCallCnt++; }
void InternalErrorReporterMock::storeFull() { storeFullCallCnt++; }
void InternalErrorReporterMock::reset() {
queueMsgNotSentCallCnt = 0;
lostTmCallCnt = 0;
storeFullCallCnt = 0;
}