flatbuffers/tests/fuzz_test.h
Derek Bailey 694add668b
Refactor test.cpp (#7487)
* Add timing command to cmakelist

* Start to split test.cpp. Move flexbuffers tests

* Move monster related tests to own file

* Move parser related tests to own file

* Move json related tests to own file

* Move proto related tests to own file

* moved more functions to parser test

* moved more functions to parser test2

* move monster extra tests to monster test

* move evolution tests to own file

* move reflection tests to own file

* move util tests to own file

* rehomed various tests

* move optional scalars test to own file:

* rehome more tests

* move fuzz tests. Got rid of global test_data_path

* fixes for CI failures

* add bazel files
2022-08-28 16:54:58 -07:00

14 lines
191 B
C++

#ifndef TESTS_FUZZ_TEST_H
#define TESTS_FUZZ_TEST_H
namespace flatbuffers {
namespace tests {
void FuzzTest1();
void FuzzTest2();
} // namespace tests
} // namespace flatbuffers
#endif