use of com.google.container.v1beta1.NodePool in project java-container by googleapis.
the class ClusterManagerClientTest method createNodePoolExceptionTest2.
@Test
public void createNodePoolExceptionTest2() throws Exception {
StatusRuntimeException exception = new StatusRuntimeException(io.grpc.Status.INVALID_ARGUMENT);
mockClusterManager.addException(exception);
try {
String projectId = "projectId-894832108";
String zone = "zone3744684";
String clusterId = "clusterId561939637";
NodePool nodePool = NodePool.newBuilder().build();
client.createNodePool(projectId, zone, clusterId, nodePool);
Assert.fail("No exception raised");
} catch (InvalidArgumentException e) {
// Expected exception.
}
}
Aggregations