add FS mock and improve HasFilesystemIF

This commit is contained in:
2022-08-10 11:09:07 +02:00
parent 3e1fd15613
commit 28c8248f26
6 changed files with 106 additions and 32 deletions

View File

@ -2,12 +2,13 @@
#include "fsfw/cfdp.h"
#include "mocks/cfdp/FaultHandlerMock.h"
#include "mocks/cfdp/UserMock.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 userMock = UserMock();
SECTION("State") {}
}