1 #ifndef TESTS_EVOLUTION_TEST_H 2 #define TESTS_EVOLUTION_TEST_H 3 4 #include <string> 5 6 namespace flatbuffers { 7 namespace tests { 8 9 void EvolutionTest(const std::string &tests_data_path); 10 void ConformTest(); 11 void UnionDeprecationTest(const std::string &tests_data_path); 12 13 } // namespace tests 14 } // namespace flatbuffers 15 16 #endif 17