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