add source and dest test stubs
fsfw/fsfw/pipeline/pr-development This commit looks good Details

This commit is contained in:
Robin Müller 2022-08-08 12:41:05 +02:00
parent 43fb6ef5cb
commit 37c60d1dd0
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC
3 changed files with 13 additions and 1 deletions

View File

@ -12,4 +12,6 @@ target_sources(
testFileData.cpp
testCfdpHeader.cpp
testFileDirective.cpp
testDistributor.cpp)
testDistributor.cpp
testDestHandler.cpp
testSourceHandler.cpp)

View File

@ -0,0 +1,5 @@
#include <catch2/catch_test_macros.hpp>
TEST_CASE("CFDP Dest Handler", "[cfdp]") {
}

View File

@ -0,0 +1,5 @@
#include <catch2/catch_test_macros.hpp>
TEST_CASE("CFDP Source Handler", "[cfdp]") {
}