fsfw/unittests/cfdp/handler/testDestHandler.cpp
Robin Mueller 0cb15e901e
All checks were successful
fsfw/fsfw/pipeline/pr-development This commit looks good
new cfdp mock folder, added additional cfdp mocks
2022-08-09 19:00:47 +02:00

14 lines
409 B
C++

#include <catch2/catch_test_macros.hpp>
#include "fsfw/cfdp.h"
#include "mocks/cfdp/FaultHandlerMock.h"
TEST_CASE("CFDP Dest Handler", "[cfdp]") {
using namespace cfdp;
EntityId localId = EntityId(UnsignedByteField<uint16_t>(2));
auto fhMock = FaultHandlerMock();
auto localEntityCfg = LocalEntityCfg(localId, IndicationCfg(), fhMock);
// auto destHandler = DestHandler();
SECTION("State") {}
}