fsfw/unittests/CatchDefinitions.h

19 lines
445 B
C
Raw Permalink Normal View History

2020-10-29 12:42:29 +01:00
#ifndef FSFW_UNITTEST_CORE_CATCHDEFINITIONS_H_
#define FSFW_UNITTEST_CORE_CATCHDEFINITIONS_H_
2020-10-20 17:11:23 +02:00
#include <fsfw/ipc/messageQueueDefinitions.h>
2022-08-16 12:48:22 +02:00
#include <fsfw/returnvalues/returnvalue.h>
2020-10-20 17:11:23 +02:00
#include <fsfw/storagemanager/StorageManagerIF.h>
2022-08-01 17:16:37 +02:00
#include "fsfw/FSFW.h"
2020-10-20 17:11:23 +02:00
namespace tconst {
2022-02-02 10:29:30 +01:00
static constexpr MessageQueueId_t testQueueId = 42;
2020-10-20 17:11:23 +02:00
}
namespace tglob {
2022-02-02 10:29:30 +01:00
StorageManagerIF* getIpcStoreHandle();
2020-10-20 17:11:23 +02:00
}
2020-10-29 12:42:29 +01:00
#endif /* FSFW_UNITTEST_CORE_CATCHDEFINITIONS_H_ */