fsfw/unittests/cfdp/handler/testDestHandler.cpp

15 lines
429 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();
cfdp::testFunc();
SECTION("State") {}
}