mueller/master #37

Closed
muellerr wants to merge 126 commits from mueller/master into eive/develop
8 changed files with 15 additions and 11 deletions
Showing only changes of commit f15460c7ab - Show all commits

View File

@ -1,4 +1,5 @@
#include "CatchFactory.h"
#include "tests/TestsConfig.h"
#include "datapoollocal/LocalPoolOwnerBase.h"
#include "mocks/HkReceiverMock.h"

View File

@ -1,4 +1,5 @@
#include "LocalPoolOwnerBase.h"
#include "tests/TestsConfig.h"
#include "fsfw_tests/unit/CatchDefinitions.h"
#include <fsfw/objectmanager/ObjectManager.h>

View File

@ -1,7 +1,7 @@
#ifndef FSFW_UNITTEST_TESTS_DATAPOOLLOCAL_LOCALPOOLOWNERBASE_H_
#define FSFW_UNITTEST_TESTS_DATAPOOLLOCAL_LOCALPOOLOWNERBASE_H_
#include "objects/systemObjectList.h"
#include "tests/TestsConfig.h"
#include "../mocks/MessageQueueMockBase.h"
#include <fsfw/datapoollocal/HasLocalDataPoolIF.h>

View File

@ -1,4 +1,5 @@
#include "LocalPoolOwnerBase.h"
#include "tests/TestsConfig.h"
#include "fsfw_tests/unit/CatchDefinitions.h"
#include <fsfw/objectmanager/ObjectManager.h>

View File

@ -1,4 +1,5 @@
#include "LocalPoolOwnerBase.h"
#include "tests/TestsConfig.h"
#include "fsfw_tests/unit/CatchDefinitions.h"
#include <catch2/catch_test_macros.hpp>

View File

@ -25,4 +25,4 @@ if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/objects/translateObjects.cpp")
target_sources(${FSFW_TEST_TGT} PRIVATE
events/translateEvents.cpp
)
endif()
endif()

View File

@ -5,7 +5,7 @@
#ifdef __cplusplus
#include "objects/systemObjectList.h"
#include "objects/testObjectList.h"
#include "events/subsystemIdRanges.h"
#include "returnvalues/classIds.h"

View File

@ -11,17 +11,17 @@ namespace objects {
FSFW_CONFIG_RESERVED_START = PUS_SERVICE_1_VERIFICATION,
FSFW_CONFIG_RESERVED_END = TM_STORE,
UDP_BRIDGE = 15,
UDP_POLLING_TASK = 16,
UDP_BRIDGE = FSFW_OBJECTS_END,
UDP_POLLING_TASK = FSFW_OBJECTS_END + 1,
TEST_ECHO_COM_IF = 20,
TEST_DEVICE = 21,
TEST_ECHO_COM_IF = FSFW_OBJECTS_END + 2,
TEST_DEVICE = FSFW_OBJECTS_END + 3,
HK_RECEIVER_MOCK = 22,
TEST_LOCAL_POOL_OWNER_BASE = 25,
SHARED_SET_ID = 26
HK_RECEIVER_MOCK = FSFW_OBJECTS_END + 4,
TEST_LOCAL_POOL_OWNER_BASE = FSFW_OBJECTS_END + 5,
SHARED_SET_ID = FSFW_OBJECTS_END + 6,
FSFW_END_TEST_IDS = FSFW_OBJECTS_END + 7
};
}