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

@ -5,7 +5,14 @@
class InternalErrorReporterMock: public InternalErrorReporterIF {
public:
unsigned int queueMsgNotSentCallCnt = 0;
unsigned int lostTmCallCnt = 0;
unsigned int storeFullCallCnt = 0;
InternalErrorReporterMock();
void queueMessageNotSent() override;
void lostTm() override;
void storeFull() override;
private:
};
#endif // FSFW_TESTS_INTERNALERRORREPORTERMOCK_H