.idea
automation
cmake
contrib
docs
misc
scripts
src
unittests
action
cfdp
container
datapoollocal
devicehandler
globalfunctions
hal
internalerror
mocks
AcceptsTmMock.cpp
AcceptsTmMock.h
CMakeLists.txt
CdsShortTimestamperMock.h
ComIFMock.cpp
ComIFMock.h
CookieIFMock.cpp
CookieIFMock.h
DeviceFdirMock.cpp
DeviceFdirMock.h
DeviceHandlerMock.cpp
DeviceHandlerMock.h
HkReceiverMock.h
InternalErrorReporterMock.cpp
InternalErrorReporterMock.h
LocalPoolOwnerBase.cpp
LocalPoolOwnerBase.h
MessageQueueMock.cpp
MessageQueueMock.h
PeriodicTaskIFMock.h
PowerSwitcherMock.cpp
PowerSwitcherMock.h
PusDistributorMock.cpp
PusDistributorMock.h
PusServiceBaseMock.cpp
PusServiceBaseMock.h
PusVerificationReporterMock.cpp
PusVerificationReporterMock.h
SimpleSerializable.h
osal
power
serialize
storagemanager
testcfg
testtemplate
timemanager
tmtcpacket
tmtcservices
util
CMakeLists.txt
CatchDefinitions.cpp
CatchDefinitions.h
CatchFactory.cpp
CatchFactory.h
CatchRunner.cpp
CatchRunner.h
CatchSetup.cpp
printChar.cpp
printChar.h
testVersion.cpp
.clang-format
.gitignore
.gitmodules
CHANGELOG.md
CMakeLists.txt
FSFWVersion.h.in
LICENSE
NOTICE
README.md
20 lines
547 B
C++
20 lines
547 B
C++
#ifndef FSFW_TESTS_INTERNALERRORREPORTERMOCK_H
|
|
#define FSFW_TESTS_INTERNALERRORREPORTERMOCK_H
|
|
|
|
#include "fsfw/internalerror/InternalErrorReporterIF.h"
|
|
|
|
class InternalErrorReporterMock : public InternalErrorReporterIF {
|
|
public:
|
|
unsigned int queueMsgNotSentCallCnt = 0;
|
|
unsigned int lostTmCallCnt = 0;
|
|
unsigned int storeFullCallCnt = 0;
|
|
InternalErrorReporterMock();
|
|
void reset();
|
|
|
|
private:
|
|
void queueMessageNotSent() override;
|
|
void lostTm() override;
|
|
void storeFull() override;
|
|
};
|
|
#endif // FSFW_TESTS_INTERNALERRORREPORTERMOCK_H
|