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