Austin Schuh | 2dd86a9 | 2022-09-14 21:19:23 -0700 | [diff] [blame] | 1 | #ifndef TESTS_REFLECTION_TEST_H |
2 | #define TESTS_REFLECTION_TEST_H | ||||
3 | |||||
4 | #include <string> | ||||
5 | |||||
6 | namespace flatbuffers { | ||||
7 | namespace tests { | ||||
8 | |||||
9 | void ReflectionTest(const std::string& tests_data_path, uint8_t *flatbuf, size_t length); | ||||
10 | void MiniReflectFixedLengthArrayTest(); | ||||
11 | void MiniReflectFlatBuffersTest(uint8_t *flatbuf); | ||||
12 | |||||
13 | } // namespace tests | ||||
14 | } // namespace flatbuffers | ||||
15 | |||||
16 | #endif |