corrections and tests
This commit is contained in:
1
test/CMakeLists.txt
Normal file
1
test/CMakeLists.txt
Normal file
@ -0,0 +1 @@
|
||||
add_subdirectory(testtasks)
|
26
test/DummyParameter.h
Normal file
26
test/DummyParameter.h
Normal file
@ -0,0 +1,26 @@
|
||||
#ifndef BSP_Q7S_CORE_NVMPARAMS_PARAMETERDEFINITIONS_H_
|
||||
#define BSP_Q7S_CORE_NVMPARAMS_PARAMETERDEFINITIONS_H_
|
||||
|
||||
#include "mission/memory/NVMParameterBase.h"
|
||||
#include <nlohmann/json.hpp>
|
||||
|
||||
#include <filesystem>
|
||||
|
||||
class DummyParameter: public NVMParameterBase {
|
||||
public:
|
||||
static constexpr char DUMMY_KEY_PARAM_1[] = "dummy1";
|
||||
static constexpr char DUMMY_KEY_PARAM_2[] = "dummy2";
|
||||
|
||||
DummyParameter(std::string mountPrefix, std::string jsonFileName):
|
||||
NVMParameterBase(mountPrefix + "/conf/" + jsonFileName),
|
||||
mountPrefix(mountPrefix) {
|
||||
insertValue(DUMMY_KEY_PARAM_1, 1);
|
||||
insertValue(DUMMY_KEY_PARAM_2, "blablub");
|
||||
}
|
||||
|
||||
private:
|
||||
std::string mountPrefix;
|
||||
};
|
||||
|
||||
|
||||
#endif /* BSP_Q7S_CORE_NVMPARAMS_PARAMETERDEFINITIONS_H_ */
|
Reference in New Issue
Block a user