2022-02-11 17:49:28 +01:00
|
|
|
#ifndef EVENTMANAGERMOCK_H_
|
|
|
|
#define EVENTMANAGERMOCK_H_
|
|
|
|
|
2022-02-16 18:15:06 +01:00
|
|
|
#include <fsfw/events/EventManager.h>
|
2022-02-11 17:49:28 +01:00
|
|
|
|
2022-02-16 18:15:06 +01:00
|
|
|
class EventManagerMock : public EventManager {
|
2022-02-11 17:49:28 +01:00
|
|
|
public:
|
2022-02-16 18:15:06 +01:00
|
|
|
EventManagerMock();
|
2022-02-11 17:49:28 +01:00
|
|
|
|
2022-02-16 18:15:06 +01:00
|
|
|
virtual ReturnValue_t performOperation(uint8_t opCode) override;
|
2022-02-11 17:49:28 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* EVENTMANAGERMOCK_H_ */
|