1 #ifndef TESTS_REFLECTION_TEST_H 2 #define TESTS_REFLECTION_TEST_H 3 4 #include <stdint.h> 5 #include <string> 6 7 namespace flatbuffers { 8 namespace tests { 9 10 void ReflectionTest(const std::string& tests_data_path, uint8_t *flatbuf, size_t length); 11 void MiniReflectFixedLengthArrayTest(); 12 void MiniReflectFlatBuffersTest(uint8_t *flatbuf); 13 14 } // namespace tests 15 } // namespace flatbuffers 16 17 #endif 18