mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 12:05:50 +00:00
* Fix clang -Wnewline-eof warning * Enable -Wnewline-eof warning Co-authored-by: Derek Bailey <derekbailey@google.com>
19 lines
471 B
C++
19 lines
471 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();
|
|
|
|
} // namespace tests
|
|
} // namespace flatbuffers
|
|
|
|
#endif
|