Search in sources :

Example 1 with GrpcService

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;
}
Also used : GrpcService(io.helidon.grpc.server.GrpcService)

Aggregations

GrpcService (io.helidon.grpc.server.GrpcService)1