Skip to content

Commit 98c4188

Browse files
authored
Remove @ignore annotations for codegen metrics test (#3618)
1 parent 4293855 commit 98c4188

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/metrics/async/BaseAsyncCoreMetricsTest.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
import software.amazon.awssdk.metrics.MetricPublisher;
4141
import software.amazon.awssdk.services.protocolrestjson.model.EmptyModeledException;
4242

43-
@Ignore
4443
@RunWith(MockitoJUnitRunner.class)
4544
public abstract class BaseAsyncCoreMetricsTest {
4645
private static final String SERVICE_ID = "AmazonProtocolRestJson";
@@ -49,7 +48,6 @@ public abstract class BaseAsyncCoreMetricsTest {
4948
static final int MAX_RETRIES = 2;
5049
public static final Duration FIXED_DELAY = Duration.ofMillis(500);
5150

52-
@Ignore
5351
@Test
5452
public void apiCall_operationSuccessful_addsMetrics() {
5553
stubSuccessfulResponse();
@@ -72,7 +70,6 @@ public void apiCall_operationSuccessful_addsMetrics() {
7270
.isGreaterThanOrEqualTo(FIXED_DELAY);
7371
}
7472

75-
@Ignore
7673
@Test
7774
public void apiCall_allRetryAttemptsFailedOf500() {
7875
stubErrorResponse();
@@ -89,7 +86,6 @@ public void apiCall_allRetryAttemptsFailedOf500() {
8986
capturedCollection.children().forEach(this::verifyFailedApiCallAttemptCollection);
9087
}
9188

92-
@Ignore
9389
@Test
9490
public void apiCall_allRetryAttemptsFailedOfNetworkError() {
9591
stubNetworkError();
@@ -115,7 +111,6 @@ public void apiCall_allRetryAttemptsFailedOfNetworkError() {
115111
});
116112
}
117113

118-
@Ignore
119114
@Test
120115
public void apiCall_firstAttemptFailedRetrySucceeded() {
121116
stubSuccessfulRetry();

0 commit comments

Comments
 (0)