improving mocks
This commit is contained in:
@ -1,7 +1,15 @@
|
||||
#include <catch2/catch_test_macros.hpp>
|
||||
|
||||
#include "fsfw/tmtcservices/TmSendHelper.h"
|
||||
#include "mocks/InternalErrorReporterMock.h"
|
||||
#include "mocks/MessageQueueMockBase.h"
|
||||
|
||||
TEST_CASE("TM Send Helper", "[tm-send-helper]") {
|
||||
TmSendHelper sendHelper(nullptr);
|
||||
auto errReporter = InternalErrorReporterMock();
|
||||
auto msgQueue = MessageQueueMockBase();
|
||||
TmSendHelper sendHelper(&msgQueue, &errReporter);
|
||||
|
||||
SECTION("State") {
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user