Update WireMockProtoFileResolver and add tests for ProtoBufUtils (#1252)

* Update WireMockProtoFileResolver and add tests for ProtoBufUtils

* .
This commit is contained in:
Stef Heyenrath
2025-02-01 22:27:32 +01:00
committed by GitHub
parent 29bf9b42f8
commit a02ff47db6
6 changed files with 100 additions and 9 deletions

View File

@@ -0,0 +1,13 @@
syntax = "proto3";
import "request.proto";
package greet;
service Greeter {
rpc SayHello (HelloRequest) returns (HelloReply);
}
message HelloReply {
string message = 1;
}