osrm-backend/tests/json_test.h
Siarhei Fedartsou 0f6aab9da6 Squashed 'third_party/flatbuffers/' content from commit 595bf0007
git-subtree-dir: third_party/flatbuffers
git-subtree-split: 595bf0007ab1929570c7671f091313c8fc20644e
2024-06-22 13:33:34 +02:00

20 lines
499 B
C++

#ifndef TESTS_JSON_TEST_H
#define TESTS_JSON_TEST_H
#include <string>
namespace flatbuffers {
namespace tests {
void JsonDefaultTest(const std::string& tests_data_path);
void JsonEnumsTest(const std::string& tests_data_path);
void JsonOptionalTest(const std::string& tests_data_path, bool default_scalars);
void ParseIncorrectMonsterJsonTest(const std::string& tests_data_path);
void JsonUnsortedArrayTest();
void JsonUnionStructTest();
} // namespace tests
} // namespace flatbuffers
#endif