17 lines
551 B
C
17 lines
551 B
C
|
#ifndef FSFW_TESTS_PUSDISTRIBUTORMOCK_H
|
||
|
#define FSFW_TESTS_PUSDISTRIBUTORMOCK_H
|
||
|
|
||
|
#include "fsfw/objectmanager/SystemObject.h"
|
||
|
#include "fsfw/tcdistribution/PUSDistributorIF.h"
|
||
|
|
||
|
class PusDistributorMock : public SystemObject, public PUSDistributorIF {
|
||
|
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
|