fsfw/unittests/cfdp/handler/testDestHandler.cpp

13 lines
370 B
C++
Raw Normal View History

2022-08-08 12:41:05 +02:00
#include <catch2/catch_test_macros.hpp>
2022-08-09 15:46:42 +02:00
#include "fsfw/cfdp.h"
#include "mocks/cfdp/FaultHandlerMock.h"
2022-08-09 15:46:42 +02:00
TEST_CASE("CFDP Dest Handler", "[cfdp]") {
using namespace cfdp;
2022-08-09 16:36:35 +02:00
EntityId localId = EntityId(UnsignedByteField<uint16_t>(2));
auto fhMock = FaultHandlerMock();
2022-08-09 16:36:35 +02:00
auto localEntityCfg = LocalEntityCfg(localId, IndicationCfg(), fhMock);
2022-08-09 15:46:42 +02:00
SECTION("State") {}
}