Skip to content

Commit 3149205

Browse files
authored
rename (#1712)
1 parent e3368db commit 3149205

14 files changed

+18
-18
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT,
3131
properties = { "spring.profiles.include=kubernetes,kubernetesdisabled" },
3232
classes = { KubernetesConfigServerApplication.class, MockConfig.class })
33-
class ConfigServerAutoConfigurationKubernetesDisabled {
33+
class ConfigServerAutoConfigurationKubernetesDisabledTests {
3434

3535
@Autowired
3636
private ConfigurableApplicationContext context;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
classes = { KubernetesConfigServerApplication.class },
3232
properties = { "spring.main.cloud-platform=KUBERNETES", "spring.profiles.include=kubernetes",
3333
"spring.cloud.kubernetes.client.namespace=default", "spring.cloud.kubernetes.config.enableApi=false" })
34-
class ConfigServerAutoConfigurationKubernetesEnabledProfileIncludedConfigApiDisabled {
34+
class ConfigServerAutoConfigurationKubernetesEnabledProfileIncludedConfigApiDisabledTests {
3535

3636
@Autowired
3737
private ConfigurableApplicationContext context;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT,
3131
classes = { KubernetesConfigServerApplication.class }, properties = { "spring.main.cloud-platform=KUBERNETES",
3232
"spring.profiles.include=kubernetes", "spring.cloud.kubernetes.config.enabled=false" })
33-
class ConfigServerAutoConfigurationKubernetesEnabledProfileIncludedConfigMapDisabled {
33+
class ConfigServerAutoConfigurationKubernetesEnabledProfileIncludedConfigMapDisabledTests {
3434

3535
@Autowired
3636
private ConfigurableApplicationContext context;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT,
3131
classes = { KubernetesConfigServerApplication.class }, properties = { "spring.main.cloud-platform=KUBERNETES",
3232
"spring.profiles.include=kubernetes", "spring.cloud.kubernetes.client.namespace=default" })
33-
class ConfigServerAutoConfigurationKubernetesEnabledProfileIncludedSecretsApiDisabled {
33+
class ConfigServerAutoConfigurationKubernetesEnabledProfileIncludedSecretsApiDisabledTests {
3434

3535
@Autowired
3636
private ConfigurableApplicationContext context;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
classes = { KubernetesConfigServerApplication.class },
3232
properties = { "spring.profiles.include=kubernetes", "spring.main.cloud-platform=KUBERNETES",
3333
"spring.cloud.kubernetes.client.namespace=default", "spring.cloud.kubernetes.secrets.enableApi=true" })
34-
class ConfigServerAutoConfigurationKubernetesEnabledProfileIncludedSecretsApiEnabled {
34+
class ConfigServerAutoConfigurationKubernetesEnabledProfileIncludedSecretsApiEnabledTests {
3535

3636
@Autowired
3737
private ConfigurableApplicationContext context;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT,
3131
classes = { KubernetesConfigServerApplication.class }, properties = { "spring.main.cloud-platform=KUBERNETES",
3232
"spring.profiles.include=kubernetes", "spring.cloud.kubernetes.client.namespace=default" })
33-
class ConfigServerAutoConfigurationKubernetesEnabledProfileIncluded {
33+
class ConfigServerAutoConfigurationKubernetesEnabledProfileIncludedTests {
3434

3535
@Autowired
3636
private ConfigurableApplicationContext context;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT,
3131
classes = { KubernetesConfigServerApplication.class, MockConfig.class },
3232
properties = { "spring.profiles.include=kubernetes,kubernetesdisabled" })
33-
class ConfigServerAutoConfigurationKubernetesProfileMissing {
33+
class ConfigServerAutoConfigurationKubernetesProfileMissingTests {
3434

3535
@Autowired
3636
private ConfigurableApplicationContext context;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@
2727
"spring.profiles.include=kubernetes", "spring.cloud.kubernetes.secrets.enableApi=true",
2828
"spring.cloud.bootstrap.enabled=true" },
2929
classes = { KubernetesConfigServerApplication.class })
30-
class BootstrapConfigServerIntegrationTest extends ConfigServerIntegrationTest {
30+
class BootstrapConfigServerIntegrationTests extends ConfigServerIntegration {
3131

3232
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
properties = { "spring.main.cloud-platform=KUBERNETES", "spring.cloud.kubernetes.client.namespace=default",
3737
"spring.profiles.include=kubernetes", "spring.cloud.kubernetes.secrets.enableApi=true" },
3838
classes = { KubernetesConfigServerApplication.class, TestBootstrapConfig.class })
39-
class ConfigDataConfigServerIntegrationTest extends ConfigServerIntegrationTest {
39+
class ConfigDataConfigServerIntegrationTests extends ConfigServerIntegration {
4040

4141
private MockedStatic<KubernetesClientUtils> clientUtilsMock;
4242

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
/**
4242
* @author Ryan Baxter
4343
*/
44-
abstract class ConfigServerIntegrationTest {
44+
abstract class ConfigServerIntegration {
4545

4646
@Autowired
4747
private TestRestTemplate testRestTemplate;

0 commit comments

Comments
 (0)