fsfw/unittests/mocks/CcsdsCheckerMock.cpp
Robin Mueller 902a4bfa9c
All checks were successful
fsfw/fsfw/pipeline/head This commit looks good
fsfw/fsfw/pipeline/pr-development This commit looks good
unittests for TC and CCSDS distributor
2022-08-01 17:16:37 +02:00

11 lines
303 B
C++

#include "CcsdsCheckerMock.h"
CcsdsCheckerMock::CcsdsCheckerMock() = default;
ReturnValue_t CcsdsCheckerMock::checkPacket(const SpacePacketReader& currentPacket,
size_t packetLen) {
checkCallCount++;
checkedPacketLen = packetLen;
return nextResult;
}