eive-obsw/unittest/mocks/HouseKeepingMock.h
Ulrich Mohr 3400c538b3
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
added EventManagerMock, to be extended and moved into fsfw some day
2022-02-16 18:15:06 +01:00

16 lines
378 B
C++

#ifndef HOUSEKEEPINGMOCK_H_
#define HOUSEKEEPINGMOCK_H_
#include <fsfw/housekeeping/AcceptsHkPacketsIF.h>
#include <fsfw/objectmanager/SystemObject.h>
#include <fsfw/ipc/MessageQueueIF.h>
class HouseKeepingMock : public SystemObject, public AcceptsHkPacketsIF {
public:
HouseKeepingMock();
virtual MessageQueueId_t getHkQueue() const;
};
#endif /*HOUSEKEEPINGMOCK_H_*/