summaryrefslogtreecommitdiff
path: root/tests/optional_scalars_test.h
diff options
context:
space:
mode:
authorDerek Bailey <derekbailey@google.com>2022-08-28 16:54:58 -0700
committerGitHub <noreply@github.com>2022-08-28 16:54:58 -0700
commit694add668be5ce1c170d3dce1a446fdaf6369963 (patch)
tree8e2c46a3c7d131ceaec4a318da9f73fbd65be20c /tests/optional_scalars_test.h
parent7edf8c90842aaa402257bf99989b58b8147ceabf (diff)
downloadflatbuffers-694add668be5ce1c170d3dce1a446fdaf6369963.tar.gz
flatbuffers-694add668be5ce1c170d3dce1a446fdaf6369963.tar.bz2
flatbuffers-694add668be5ce1c170d3dce1a446fdaf6369963.zip
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
Diffstat (limited to 'tests/optional_scalars_test.h')
-rw-r--r--tests/optional_scalars_test.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/optional_scalars_test.h b/tests/optional_scalars_test.h
new file mode 100644
index 00000000..922e52ca
--- /dev/null
+++ b/tests/optional_scalars_test.h
@@ -0,0 +1,13 @@
+#ifndef TESTS_OPTIONAL_SCALARS_TEST_H
+#define TESTS_OPTIONAL_SCALARS_TEST_H
+
+
+namespace flatbuffers {
+namespace tests {
+
+void OptionalScalarsTest();
+
+} // namespace tests
+} // namespace flatbuffers
+
+#endif