aboutsummaryrefslogtreecommitdiff
path: root/test/monster_test_solo/monster_test_solo.c
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2023-07-16 02:03:33 +0200
committerToni Uhlig <matzeton@googlemail.com>2023-07-16 02:03:33 +0200
commit5a40295c4cf0af5ea8da9ced04a4ce7d3621a080 (patch)
treecb21506e7b04d10b45d6066a0ee1655563d5d52b /test/monster_test_solo/monster_test_solo.c
Squashed 'flatcc/' content from commit 473da2a
git-subtree-dir: flatcc git-subtree-split: 473da2afa5ca435363f8c5e6569167aee6bc31c5
Diffstat (limited to 'test/monster_test_solo/monster_test_solo.c')
-rw-r--r--test/monster_test_solo/monster_test_solo.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/monster_test_solo/monster_test_solo.c b/test/monster_test_solo/monster_test_solo.c
new file mode 100644
index 0000000..3005580
--- /dev/null
+++ b/test/monster_test_solo/monster_test_solo.c
@@ -0,0 +1,24 @@
+/* Minimal test with all headers generated into a single file. */
+#include "monster_test.h"
+
+int main(int argc, char *argv[])
+{
+ int ret;
+ void *buf;
+ size_t size;
+ flatcc_builder_t builder, *B;
+
+ (void)argc;
+ (void)argv;
+
+ B = &builder;
+ flatcc_builder_init(B);
+
+ MyGame_Example_Monster_start_as_root(B);
+ MyGame_Example_Monster_name_create_str(B, "MyMonster");
+ MyGame_Example_Monster_end_as_root(B);
+ buf = flatcc_builder_get_direct_buffer(B, &size);
+ ret = MyGame_Example_Monster_verify_as_root(buf, size);
+ flatcc_builder_clear(B);
+ return ret;
+}