fsfw/unittests/mocks/PusDistributorMock.h

17 lines
551 B
C
Raw Normal View History

2022-07-26 18:46:28 +02:00
#ifndef FSFW_TESTS_PUSDISTRIBUTORMOCK_H
#define FSFW_TESTS_PUSDISTRIBUTORMOCK_H
#include "fsfw/objectmanager/SystemObject.h"
2022-07-29 12:03:14 +02:00
#include "fsfw/tcdistribution/PusDistributorIF.h"
2022-07-26 18:46:28 +02:00
2022-07-29 12:03:14 +02:00
class PusDistributorMock : public SystemObject, public PusDistributorIF {
2022-07-26 18:46:28 +02:00
public:
PusDistributorMock();
explicit PusDistributorMock(object_id_t registeredId);
unsigned int registerCallCount = 0;
AcceptsTelecommandsIF* lastServiceArg = nullptr;
ReturnValue_t registerService(AcceptsTelecommandsIF* service) override;
};
#endif // FSFW_TESTS_PUSDISTRIBUTORMOCK_H