use of io.helidon.grpc.server.GrpcService in project helidon by oracle.
the class GrpcMetricsInterceptorIT method createMockService.
private GrpcService createMockService() {
GrpcService service = mock(GrpcService.class);
when(service.name()).thenReturn("Foo");
return service;
}
Aggregations