summaryrefslogtreecommitdiffstats
path: root/tests/inputs/casing/casing.proto
diff options
context:
space:
mode:
Diffstat (limited to 'tests/inputs/casing/casing.proto')
-rw-r--r--tests/inputs/casing/casing.proto20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/inputs/casing/casing.proto b/tests/inputs/casing/casing.proto
new file mode 100644
index 0000000..2023d93
--- /dev/null
+++ b/tests/inputs/casing/casing.proto
@@ -0,0 +1,20 @@
+syntax = "proto3";
+
+package casing;
+
+enum my_enum {
+ ZERO = 0;
+ ONE = 1;
+ TWO = 2;
+}
+
+message Test {
+ int32 camelCase = 1;
+ my_enum snake_case = 2;
+ snake_case_message snake_case_message = 3;
+ int32 UPPERCASE = 4;
+}
+
+message snake_case_message {
+
+} \ No newline at end of file