summaryrefslogtreecommitdiffstats
path: root/tests/callbacks.proto
diff options
context:
space:
mode:
Diffstat (limited to 'tests/callbacks.proto')
-rw-r--r--tests/callbacks.proto16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/callbacks.proto b/tests/callbacks.proto
new file mode 100644
index 00000000..7bc79002
--- /dev/null
+++ b/tests/callbacks.proto
@@ -0,0 +1,16 @@
+/* Todo: write tests for the rest of these fields, currently only stringvalue
+ * is tested.
+ */
+
+message SubMessage {
+ optional int32 int32value = 1;
+}
+
+message TestMessage {
+ optional string stringvalue = 1;
+ optional int32 int32value = 2;
+ optional fixed32 fixed32value = 3;
+ optional fixed64 fixed64value = 4;
+ optional SubMessage submsg = 5;
+}
+