blob: 9f6137d8873b702c6b10e0c2165e11919fe30931 [file] [log] [blame]
Austin Schuh2dd86a92022-09-14 21:19:23 -07001#ifndef TESTS_PROTO_TEST_H
2#define TESTS_PROTO_TEST_H
3
4#include <string>
5
6namespace flatbuffers {
7namespace tests {
8
9void ParseProtoTest(const std::string& tests_data_path);
10void ParseProtoTestWithSuffix(const std::string& tests_data_path);
11void ParseProtoTestWithIncludes(const std::string& tests_data_path);
12void ParseProtoBufAsciiTest();
13
14
15} // namespace tests
16} // namespace flatbuffers
17
18#endif