Refactor and clean up HK and Local Pool Modules

This commit is contained in:
2024-11-15 10:56:43 +01:00
parent 21d5800bfa
commit fd89c33aae
206 changed files with 3530 additions and 4961 deletions

View File

@ -6,12 +6,12 @@
#include <array>
#include <catch2/catch_test_macros.hpp>
#include "mocks/MessageQueueMock.h"
#include "mock/MessageQueueMock.h"
TEST_CASE("Action Helper", "[action]") {
ActionHelperOwnerMockBase testDhMock;
// TODO: Setting another number here breaks the test. Find out why
MessageQueueMock testMqMock(MessageQueueIF::NO_QUEUE);
MessageQueueMock testMqMock(MessageQueueIF::NO_QUEUE, MessageQueueIF::NO_QUEUE);
ActionHelper actionHelper = ActionHelper(&testDhMock, dynamic_cast<MessageQueueIF*>(&testMqMock));
CommandMessage actionMessage;
ActionId_t testActionId = 777;