add some encoding test

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
2020-12-29 13:44:22 +03:00
parent 5d3c8fc527
commit a308d65b9c
4 changed files with 136 additions and 30 deletions

View File

@@ -2,6 +2,8 @@ syntax = "proto3";
package helloworld;
option go_package = ".;helloworld";
service Test {
rpc Call(Request) returns (Response) {}
}
@@ -9,8 +11,15 @@ service Test {
message Request {
string uuid = 1;
string name = 2;
}
Broken broken = 4;
};
message Broken {
string field = 1;
};
message Response {
string msg = 1;
}
Broken broken = 4;
};