2020-12-01 16:24:38 +01:00
|
|
|
#ifndef FSFW_UNITTEST_INTERNAL_INTTESTSERIALIZATION_H_
|
|
|
|
#define FSFW_UNITTEST_INTERNAL_INTTESTSERIALIZATION_H_
|
|
|
|
|
2020-12-14 10:48:39 +01:00
|
|
|
#include "../../../returnvalues/HasReturnvaluesIF.h"
|
2020-10-20 17:11:23 +02:00
|
|
|
#include <array>
|
|
|
|
|
|
|
|
namespace testserialize {
|
|
|
|
ReturnValue_t test_serialization();
|
|
|
|
ReturnValue_t test_endianness_tools();
|
|
|
|
ReturnValue_t test_autoserialization();
|
|
|
|
ReturnValue_t test_serial_buffer_adapter();
|
|
|
|
|
|
|
|
extern std::array<uint8_t, 512> test_array;
|
|
|
|
}
|
|
|
|
|
2020-12-01 16:24:38 +01:00
|
|
|
#endif /* FSFW_UNITTEST_INTERNAL_INTTESTSERIALIZATION_H_ */
|