|
1 | 1 | // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. |
2 | 2 | // SPDX-License-Identifier: Apache-2.0 |
3 | 3 |
|
4 | | -import static org.junit.jupiter.api.Assertions.assertDoesNotThrow; |
5 | 4 | import static org.junit.jupiter.api.Assertions.assertFalse; |
6 | 5 | import com.example.autoscaling.scenario.AutoScalingScenario; |
7 | | -import com.example.autoscaling.CreateAutoScalingGroup; |
8 | | -import com.example.autoscaling.DeleteAutoScalingGroup; |
9 | | -import com.example.autoscaling.DescribeAutoScalingInstances; |
10 | | -import com.example.autoscaling.DetachInstances; |
11 | 6 | import com.example.autoscaling.scenario.CloudFormationHelper; |
12 | | -import com.google.gson.Gson; |
13 | 7 | import org.junit.jupiter.api.BeforeAll; |
14 | | -import org.junit.jupiter.api.DisplayName; |
15 | 8 | import org.junit.jupiter.api.MethodOrderer; |
16 | | -import org.junit.jupiter.api.Nested; |
17 | 9 | import org.junit.jupiter.api.Order; |
18 | 10 | import org.junit.jupiter.api.Tag; |
19 | 11 | import org.junit.jupiter.api.Test; |
|
25 | 17 | import java.util.Random; |
26 | 18 | import software.amazon.awssdk.regions.Region; |
27 | 19 | import software.amazon.awssdk.services.ec2.Ec2Client; |
28 | | -import software.amazon.awssdk.services.secretsmanager.SecretsManagerClient; |
29 | | -import software.amazon.awssdk.services.secretsmanager.model.GetSecretValueRequest; |
30 | | -import software.amazon.awssdk.services.secretsmanager.model.GetSecretValueResponse; |
31 | 20 |
|
32 | 21 | /** |
33 | 22 | * To run these integration tests, you must set the required values |
|
0 commit comments