aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/grpc/grpc.proto
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/blackbox/testdata/grpc/grpc.proto')
-rw-r--r--tests/auto/blackbox/testdata/grpc/grpc.proto15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/auto/blackbox/testdata/grpc/grpc.proto b/tests/auto/blackbox/testdata/grpc/grpc.proto
new file mode 100644
index 000000000..631006bad
--- /dev/null
+++ b/tests/auto/blackbox/testdata/grpc/grpc.proto
@@ -0,0 +1,15 @@
+syntax = "proto3";
+
+package Qbs;
+
+message Request {
+ string name = 1;
+}
+
+message Response {
+ string name = 1;
+}
+
+service Grpc {
+ rpc doWork(Request) returns (Response) {}
+}