summaryrefslogtreecommitdiffstats
path: root/tests/unittestproto.proto
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unittestproto.proto')
-rw-r--r--tests/unittestproto.proto28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/unittestproto.proto b/tests/unittestproto.proto
new file mode 100644
index 00000000..c8a39dd6
--- /dev/null
+++ b/tests/unittestproto.proto
@@ -0,0 +1,28 @@
+import 'nanopb.proto';
+
+message IntegerArray {
+ repeated int32 data = 1 [(nanopb).max_count = 10];
+}
+
+message FloatArray {
+ repeated float data = 1 [(nanopb).max_count = 10];
+}
+
+message CallbackArray {
+ // We cheat a bit and use this message for testing other types, too.
+ // Nanopb does not care about the actual defined data type for callback
+ // fields.
+ repeated int32 data = 1;
+}
+
+message IntegerContainer {
+ required IntegerArray submsg = 1;
+}
+
+message CallbackContainer {
+ required CallbackArray submsg = 1;
+}
+
+message CallbackContainerContainer {
+ required CallbackContainer submsg = 1;
+}