Files
flatbuffers/tests/reflection_test.h
2025-09-23 21:50:27 -07:00

20 lines
408 B
C++

#ifndef TESTS_REFLECTION_TEST_H
#define TESTS_REFLECTION_TEST_H
#include <stdint.h>
#include <string>
namespace flatbuffers {
namespace tests {
void ReflectionTest(const std::string& tests_data_path, uint8_t* flatbuf,
size_t length);
void MiniReflectFixedLengthArrayTest();
void MiniReflectFlatBuffersTest(uint8_t* flatbuf);
} // namespace tests
} // namespace flatbuffers
#endif