use of com.google.api.gax.grpc.testing.MockGrpcService in project java-dialogflow-cx by googleapis.
the class VersionsClientTest method startStaticServer.
@BeforeClass
public static void startStaticServer() {
mockVersions = new MockVersions();
mockServiceHelper = new MockServiceHelper(UUID.randomUUID().toString(), Arrays.<MockGrpcService>asList(mockVersions));
mockServiceHelper.start();
}
use of com.google.api.gax.grpc.testing.MockGrpcService in project java-dialogflow-cx by googleapis.
the class SecuritySettingsServiceClientTest method startStaticServer.
@BeforeClass
public static void startStaticServer() {
mockSecuritySettingsService = new MockSecuritySettingsService();
mockServiceHelper = new MockServiceHelper(UUID.randomUUID().toString(), Arrays.<MockGrpcService>asList(mockSecuritySettingsService));
mockServiceHelper.start();
}
use of com.google.api.gax.grpc.testing.MockGrpcService in project java-dialogflow-cx by googleapis.
the class AgentsClientTest method startStaticServer.
@BeforeClass
public static void startStaticServer() {
mockAgents = new MockAgents();
mockServiceHelper = new MockServiceHelper(UUID.randomUUID().toString(), Arrays.<MockGrpcService>asList(mockAgents));
mockServiceHelper.start();
}
use of com.google.api.gax.grpc.testing.MockGrpcService in project java-dialogflow-cx by googleapis.
the class ChangelogsClientTest method startStaticServer.
@BeforeClass
public static void startStaticServer() {
mockChangelogs = new MockChangelogs();
mockServiceHelper = new MockServiceHelper(UUID.randomUUID().toString(), Arrays.<MockGrpcService>asList(mockChangelogs));
mockServiceHelper.start();
}
use of com.google.api.gax.grpc.testing.MockGrpcService in project java-dialogflow-cx by googleapis.
the class IntentsClientTest method startStaticServer.
@BeforeClass
public static void startStaticServer() {
mockIntents = new MockIntents();
mockServiceHelper = new MockServiceHelper(UUID.randomUUID().toString(), Arrays.<MockGrpcService>asList(mockIntents));
mockServiceHelper.start();
}
Aggregations