use of com.google.logging.v2.MetricNameOneof in project google-cloud-java by GoogleCloudPlatform.
the class MetricsClientTest method deleteLogMetricExceptionTest.
@Test
@SuppressWarnings("all")
public void deleteLogMetricExceptionTest() throws Exception {
StatusRuntimeException exception = new StatusRuntimeException(Status.INVALID_ARGUMENT);
mockMetricsServiceV2.addException(exception);
try {
MetricNameOneof metricName = MetricNameOneof.from(MetricName.create("[PROJECT]", "[METRIC]"));
client.deleteLogMetric(metricName);
Assert.fail("No exception raised");
} catch (ApiException e) {
Assert.assertEquals(Status.INVALID_ARGUMENT.getCode(), e.getStatusCode());
}
}
use of com.google.logging.v2.MetricNameOneof in project google-cloud-java by GoogleCloudPlatform.
the class MetricsClientTest method getLogMetricExceptionTest.
@Test
@SuppressWarnings("all")
public void getLogMetricExceptionTest() throws Exception {
StatusRuntimeException exception = new StatusRuntimeException(Status.INVALID_ARGUMENT);
mockMetricsServiceV2.addException(exception);
try {
MetricNameOneof metricName = MetricNameOneof.from(MetricName.create("[PROJECT]", "[METRIC]"));
client.getLogMetric(metricName);
Assert.fail("No exception raised");
} catch (ApiException e) {
Assert.assertEquals(Status.INVALID_ARGUMENT.getCode(), e.getStatusCode());
}
}
Aggregations