fsfw/unittests/CatchDefinitions.h
Ulrich Mohr 217276d50c
All checks were successful
fsfw/fsfw/pipeline/pr-development This commit looks good
renamed returnvalue header
2022-08-16 12:48:22 +02:00

17 lines
421 B
C++

#ifndef FSFW_UNITTEST_CORE_CATCHDEFINITIONS_H_
#define FSFW_UNITTEST_CORE_CATCHDEFINITIONS_H_
#include <fsfw/ipc/messageQueueDefinitions.h>
#include <fsfw/returnvalues/returnvalue.h>
#include <fsfw/storagemanager/StorageManagerIF.h>
namespace tconst {
static constexpr MessageQueueId_t testQueueId = 42;
}
namespace tglob {
StorageManagerIF* getIpcStoreHandle();
}
#endif /* FSFW_UNITTEST_CORE_CATCHDEFINITIONS_H_ */