diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2016-11-22 17:25:00 +0200 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2016-11-22 17:25:00 +0200 |
commit | 928becdc52d7c8805b0e4259e0682df56e637da7 (patch) | |
tree | deb364082476307da9f64fcfc847cc7e50d09626 /tests/enum_to_string/enum.proto | |
parent | 3a01eea8644576d47c2cc05ad3eac900d4b8e4f4 (diff) |
Test case for enum_to_string
Diffstat (limited to 'tests/enum_to_string/enum.proto')
-rw-r--r-- | tests/enum_to_string/enum.proto | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/enum_to_string/enum.proto b/tests/enum_to_string/enum.proto new file mode 100644 index 00000000..07c67363 --- /dev/null +++ b/tests/enum_to_string/enum.proto @@ -0,0 +1,19 @@ +/* Test enum to string function generation */ + +syntax = "proto2"; + +import "nanopb.proto"; + +option (nanopb_fileopt).enum_to_string = true; + +enum MyEnum { + VALUE1 = 1; + VALUE2 = 2; + VALUE15 = 15; +} + +enum MyShortNameEnum { + option (nanopb_enumopt).long_names = false; + MSNE_VALUE256 = 256; +} + |