2022-07-25 13:39:07 +02:00
|
|
|
#include <catch2/catch_test_macros.hpp>
|
|
|
|
|
2022-07-25 14:04:06 +02:00
|
|
|
#include "fsfw/tmtcservices/TmSendHelper.h"
|
2022-07-25 14:31:57 +02:00
|
|
|
#include "mocks/InternalErrorReporterMock.h"
|
|
|
|
#include "mocks/MessageQueueMockBase.h"
|
2022-07-25 13:39:07 +02:00
|
|
|
|
2022-07-25 14:04:06 +02:00
|
|
|
TEST_CASE("TM Send Helper", "[tm-send-helper]") {
|
2022-07-25 14:31:57 +02:00
|
|
|
auto errReporter = InternalErrorReporterMock();
|
|
|
|
auto msgQueue = MessageQueueMockBase();
|
|
|
|
TmSendHelper sendHelper(&msgQueue, &errReporter);
|
|
|
|
|
2022-07-25 19:36:56 +02:00
|
|
|
SECTION("State") {}
|
2022-07-25 13:39:07 +02:00
|
|
|
}
|