2022-07-25 13:39:07 +02:00
|
|
|
#include <catch2/catch_test_macros.hpp>
|
2022-07-25 19:49:19 +02:00
|
|
|
#include <iostream>
|
2022-07-25 13:39:07 +02:00
|
|
|
|
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"
|
2022-07-25 19:42:05 +02:00
|
|
|
#include "mocks/MessageQueueMock.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();
|
2022-07-25 19:49:19 +02:00
|
|
|
auto msgQueue = MessageQueueMock();
|
2022-07-25 14:31:57 +02:00
|
|
|
TmSendHelper sendHelper(&msgQueue, &errReporter);
|
|
|
|
|
2022-07-25 19:49:19 +02:00
|
|
|
SECTION("State") {
|
|
|
|
}
|
2022-07-25 13:39:07 +02:00
|
|
|
}
|