use of com.google.api.gax.grpc.testing.MockGrpcService in project java-talent by googleapis.
the class CompanyServiceClientTest method startStaticServer.
@BeforeClass
public static void startStaticServer() {
mockCompanyService = new MockCompanyService();
mockServiceHelper = new MockServiceHelper(UUID.randomUUID().toString(), Arrays.<MockGrpcService>asList(mockCompanyService));
mockServiceHelper.start();
}
use of com.google.api.gax.grpc.testing.MockGrpcService in project java-pubsublite by googleapis.
the class TopicStatsServiceClientTest method startStaticServer.
@BeforeClass
public static void startStaticServer() {
mockTopicStatsService = new MockTopicStatsService();
mockServiceHelper = new MockServiceHelper(UUID.randomUUID().toString(), Arrays.<MockGrpcService>asList(mockTopicStatsService));
mockServiceHelper.start();
}
use of com.google.api.gax.grpc.testing.MockGrpcService in project java-monitoring by googleapis.
the class GroupServiceClientTest method startStaticServer.
@BeforeClass
public static void startStaticServer() {
mockGroupService = new MockGroupService();
mockServiceHelper = new MockServiceHelper(UUID.randomUUID().toString(), Arrays.<MockGrpcService>asList(mockGroupService));
mockServiceHelper.start();
}
use of com.google.api.gax.grpc.testing.MockGrpcService in project java-monitoring by googleapis.
the class ServiceMonitoringServiceClientTest method startStaticServer.
@BeforeClass
public static void startStaticServer() {
mockServiceMonitoringService = new MockServiceMonitoringService();
mockServiceHelper = new MockServiceHelper(UUID.randomUUID().toString(), Arrays.<MockGrpcService>asList(mockServiceMonitoringService));
mockServiceHelper.start();
}
use of com.google.api.gax.grpc.testing.MockGrpcService in project java-monitoring by googleapis.
the class QueryServiceClientTest method startStaticServer.
@BeforeClass
public static void startStaticServer() {
mockQueryService = new MockQueryService();
mockServiceHelper = new MockServiceHelper(UUID.randomUUID().toString(), Arrays.<MockGrpcService>asList(mockQueryService));
mockServiceHelper.start();
}
Aggregations