|
|
|
|
@@ -20,8 +20,52 @@ import org.junit.Ignore;
|
|
|
|
|
import org.junit.runner.RunWith;
|
|
|
|
|
import org.junit.runners.Suite;
|
|
|
|
|
import org.junit.runners.Suite.SuiteClasses;
|
|
|
|
|
|
|
|
|
|
import org.springframework.cloud.autoconfigure.LifecycleMvcAutoConfigurationTests;
|
|
|
|
|
import org.springframework.cloud.autoconfigure.RefreshAutoConfigurationClassPathTests;
|
|
|
|
|
import org.springframework.cloud.autoconfigure.RefreshAutoConfigurationMoreClassPathTests;
|
|
|
|
|
import org.springframework.cloud.autoconfigure.RefreshAutoConfigurationTests;
|
|
|
|
|
import org.springframework.cloud.bootstrap.BootstrapDisabledAutoConfigurationIntegrationTests;
|
|
|
|
|
import org.springframework.cloud.bootstrap.BootstrapOrderingAutoConfigurationIntegrationTests;
|
|
|
|
|
import org.springframework.cloud.bootstrap.BootstrapOrderingCustomPropertySourceIntegrationTests;
|
|
|
|
|
import org.springframework.cloud.bootstrap.BootstrapOrderingSpringApplicationJsonIntegrationTests;
|
|
|
|
|
import org.springframework.cloud.bootstrap.BootstrapSourcesOrderingTests;
|
|
|
|
|
import org.springframework.cloud.bootstrap.MessageSourceConfigurationTests;
|
|
|
|
|
import org.springframework.cloud.bootstrap.config.BootstrapConfigurationTests;
|
|
|
|
|
import org.springframework.cloud.bootstrap.config.BootstrapListenerHierarchyIntegrationTests;
|
|
|
|
|
import org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfigurationTests;
|
|
|
|
|
import org.springframework.cloud.bootstrap.encrypt.EncryptionIntegrationTests;
|
|
|
|
|
import org.springframework.cloud.bootstrap.encrypt.EncryptorFactoryTests;
|
|
|
|
|
import org.springframework.cloud.bootstrap.encrypt.EnvironmentDecryptApplicationInitializerTests;
|
|
|
|
|
import org.springframework.cloud.bootstrap.encrypt.RsaDisabledTests;
|
|
|
|
|
import org.springframework.cloud.context.environment.EnvironmentManagerIntegrationTests;
|
|
|
|
|
import org.springframework.cloud.context.environment.EnvironmentManagerTest;
|
|
|
|
|
import org.springframework.cloud.context.named.NamedContextFactoryTests;
|
|
|
|
|
import org.springframework.cloud.context.properties.ConfigurationPropertiesRebinderIntegrationTests;
|
|
|
|
|
import org.springframework.cloud.context.properties.ConfigurationPropertiesRebinderLifecycleIntegrationTests;
|
|
|
|
|
import org.springframework.cloud.context.properties.ConfigurationPropertiesRebinderListIntegrationTests;
|
|
|
|
|
import org.springframework.cloud.context.properties.ConfigurationPropertiesRebinderProxyIntegrationTests;
|
|
|
|
|
import org.springframework.cloud.context.properties.ConfigurationPropertiesRebinderRefreshScopeIntegrationTests;
|
|
|
|
|
import org.springframework.cloud.context.refresh.ContextRefresherIntegrationTests;
|
|
|
|
|
import org.springframework.cloud.context.refresh.ContextRefresherTests;
|
|
|
|
|
import org.springframework.cloud.context.restart.RestartIntegrationTests;
|
|
|
|
|
import org.springframework.cloud.context.scope.refresh.ImportRefreshScopeIntegrationTests;
|
|
|
|
|
import org.springframework.cloud.context.scope.refresh.MoreRefreshScopeIntegrationTests;
|
|
|
|
|
import org.springframework.cloud.context.scope.refresh.RefreshEndpointIntegrationTests;
|
|
|
|
|
import org.springframework.cloud.context.scope.refresh.RefreshScopeConcurrencyTests;
|
|
|
|
|
import org.springframework.cloud.context.scope.refresh.RefreshScopeConfigurationScaleTests;
|
|
|
|
|
import org.springframework.cloud.context.scope.refresh.RefreshScopeConfigurationTests;
|
|
|
|
|
import org.springframework.cloud.context.scope.refresh.RefreshScopeIntegrationTests;
|
|
|
|
|
import org.springframework.cloud.context.scope.refresh.RefreshScopeLazyIntegrationTests;
|
|
|
|
|
import org.springframework.cloud.context.scope.refresh.RefreshScopeListBindingIntegrationTests;
|
|
|
|
|
import org.springframework.cloud.context.scope.refresh.RefreshScopeNullBeanIntegrationTests;
|
|
|
|
|
import org.springframework.cloud.context.scope.refresh.RefreshScopePureScaleTests;
|
|
|
|
|
import org.springframework.cloud.context.scope.refresh.RefreshScopeScaleTests;
|
|
|
|
|
import org.springframework.cloud.context.scope.refresh.RefreshScopeSerializationTests;
|
|
|
|
|
import org.springframework.cloud.context.scope.refresh.RefreshScopeWebIntegrationTests;
|
|
|
|
|
import org.springframework.cloud.endpoint.RefreshEndpointTests;
|
|
|
|
|
import org.springframework.cloud.health.RefreshScopeHealthIndicatorTests;
|
|
|
|
|
import org.springframework.cloud.logging.LoggingRebinderTests;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* A test suite for probing weird ordering problems in the tests.
|
|
|
|
|
@@ -29,7 +73,39 @@ import org.springframework.cloud.endpoint.RefreshEndpointTests;
|
|
|
|
|
* @author Dave Syer
|
|
|
|
|
*/
|
|
|
|
|
@RunWith(Suite.class)
|
|
|
|
|
@SuiteClasses({ RefreshEndpointTests.class, ContextRefresherTests.class })
|
|
|
|
|
@SuiteClasses({ BootstrapSourcesOrderingTests.class,
|
|
|
|
|
BootstrapDisabledAutoConfigurationIntegrationTests.class,
|
|
|
|
|
EncryptionBootstrapConfigurationTests.class, RsaDisabledTests.class,
|
|
|
|
|
EncryptorFactoryTests.class, EnvironmentDecryptApplicationInitializerTests.class,
|
|
|
|
|
EncryptionIntegrationTests.class,
|
|
|
|
|
BootstrapOrderingAutoConfigurationIntegrationTests.class,
|
|
|
|
|
MessageSourceConfigurationTests.class,
|
|
|
|
|
BootstrapOrderingSpringApplicationJsonIntegrationTests.class,
|
|
|
|
|
BootstrapConfigurationTests.class,
|
|
|
|
|
BootstrapListenerHierarchyIntegrationTests.class,
|
|
|
|
|
BootstrapOrderingCustomPropertySourceIntegrationTests.class,
|
|
|
|
|
RefreshEndpointTests.class, RefreshAutoConfigurationClassPathTests.class,
|
|
|
|
|
RefreshAutoConfigurationMoreClassPathTests.class,
|
|
|
|
|
LifecycleMvcAutoConfigurationTests.class, RefreshAutoConfigurationTests.class,
|
|
|
|
|
RestartIntegrationTests.class, ContextRefresherIntegrationTests.class,
|
|
|
|
|
ContextRefresherTests.class,
|
|
|
|
|
ConfigurationPropertiesRebinderListIntegrationTests.class,
|
|
|
|
|
ConfigurationPropertiesRebinderLifecycleIntegrationTests.class,
|
|
|
|
|
ConfigurationPropertiesRebinderIntegrationTests.class,
|
|
|
|
|
ConfigurationPropertiesRebinderRefreshScopeIntegrationTests.class,
|
|
|
|
|
ConfigurationPropertiesRebinderProxyIntegrationTests.class,
|
|
|
|
|
RefreshScopeIntegrationTests.class, RefreshScopeConfigurationTests.class,
|
|
|
|
|
RefreshScopeLazyIntegrationTests.class, ImportRefreshScopeIntegrationTests.class,
|
|
|
|
|
RefreshScopeConcurrencyTests.class, RefreshEndpointIntegrationTests.class,
|
|
|
|
|
RefreshScopeConfigurationScaleTests.class,
|
|
|
|
|
RefreshScopeNullBeanIntegrationTests.class,
|
|
|
|
|
MoreRefreshScopeIntegrationTests.class,
|
|
|
|
|
RefreshScopeListBindingIntegrationTests.class,
|
|
|
|
|
RefreshScopeWebIntegrationTests.class, RefreshScopePureScaleTests.class,
|
|
|
|
|
RefreshScopeScaleTests.class, RefreshScopeSerializationTests.class,
|
|
|
|
|
NamedContextFactoryTests.class, EnvironmentManagerIntegrationTests.class,
|
|
|
|
|
EnvironmentManagerTest.class, LoggingRebinderTests.class,
|
|
|
|
|
RefreshScopeHealthIndicatorTests.class })
|
|
|
|
|
@Ignore
|
|
|
|
|
public class AdhocTestSuite {
|
|
|
|
|
|
|
|
|
|
|