use of com.google.api.gax.grpc.testing.MockServiceHelper in project java-talent by googleapis.
the class TenantServiceClientTest method startStaticServer.
@BeforeClass
public static void startStaticServer() {
mockTenantService = new MockTenantService();
mockServiceHelper = new MockServiceHelper(UUID.randomUUID().toString(), Arrays.<MockGrpcService>asList(mockTenantService));
mockServiceHelper.start();
}
use of com.google.api.gax.grpc.testing.MockServiceHelper in project java-talent by googleapis.
the class EventServiceClientTest method startStaticServer.
@BeforeClass
public static void startStaticServer() {
mockEventService = new MockEventService();
mockServiceHelper = new MockServiceHelper(UUID.randomUUID().toString(), Arrays.<MockGrpcService>asList(mockEventService));
mockServiceHelper.start();
}
use of com.google.api.gax.grpc.testing.MockServiceHelper 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.MockServiceHelper 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.MockServiceHelper 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();
}
Aggregations