1
0
forked from fsfw/fsfw

new filesystem module

This commit is contained in:
2022-08-09 16:36:35 +02:00
parent 5bea92d2a4
commit 8c059f8f32
14 changed files with 23 additions and 10 deletions

View File

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