all tests running again

This commit is contained in:
2022-07-25 19:49:19 +02:00
parent 935e135f1c
commit a88f767cca
8 changed files with 22 additions and 24 deletions

View File

@ -1,4 +1,5 @@
#include <catch2/catch_test_macros.hpp>
#include <iostream>
#include "fsfw/tmtcservices/TmSendHelper.h"
#include "mocks/InternalErrorReporterMock.h"
@ -6,8 +7,9 @@
TEST_CASE("TM Send Helper", "[tm-send-helper]") {
auto errReporter = InternalErrorReporterMock();
auto msgQueue = MessageQueueMockBase();
auto msgQueue = MessageQueueMock();
TmSendHelper sendHelper(&msgQueue, &errReporter);
SECTION("State") {}
SECTION("State") {
}
}