blob: fe6efd45e3659c65896a4120ab25bbefcca8431e [file] [log] [blame]
Austin Schuh2dd86a92022-09-14 21:19:23 -07001#ifndef TESTS_JSON_TEST_H
2#define TESTS_JSON_TEST_H
3
4#include <string>
5
6namespace flatbuffers {
7namespace tests {
8
9void JsonDefaultTest(const std::string& tests_data_path);
10void JsonEnumsTest(const std::string& tests_data_path);
11void JsonOptionalTest(const std::string& tests_data_path, bool default_scalars);
12void ParseIncorrectMonsterJsonTest(const std::string& tests_data_path);
13void JsonUnsortedArrayTest();
14
15} // namespace tests
16} // namespace flatbuffers
17
18#endif