Skip to content

Commit

Permalink
Rename tests due to change in spring-projectsgh-28927
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrannen committed Aug 5, 2022
1 parent 853407b commit 1de0207
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
class ApplicationContextAotGeneratorTests {

@Test
void generateApplicationContextWhenHasSimpleBean() {
void processAheadOfTimeWhenHasSimpleBean() {
GenericApplicationContext applicationContext = new GenericApplicationContext();
applicationContext.registerBeanDefinition("test", new RootBeanDefinition(SimpleComponent.class));
testCompiledResult(applicationContext, (initializer, compiled) -> {
Expand All @@ -66,7 +66,7 @@ void generateApplicationContextWhenHasSimpleBean() {
}

@Test
void generateApplicationContextWhenHasAutowiring() {
void processAheadOfTimeWhenHasAutowiring() {
GenericApplicationContext applicationContext = new GenericApplicationContext();
applicationContext.registerBeanDefinition(AnnotationConfigUtils.AUTOWIRED_ANNOTATION_PROCESSOR_BEAN_NAME,
BeanDefinitionBuilder
Expand All @@ -87,7 +87,7 @@ void generateApplicationContextWhenHasAutowiring() {
}

@Test
void generateApplicationContextWhenHasInitDestroyMethods() {
void processAheadOfTimeWhenHasInitDestroyMethods() {
GenericApplicationContext applicationContext = new GenericApplicationContext();
applicationContext.registerBeanDefinition(
AnnotationConfigUtils.COMMON_ANNOTATION_PROCESSOR_BEAN_NAME,
Expand All @@ -107,7 +107,7 @@ void generateApplicationContextWhenHasInitDestroyMethods() {
}

@Test
void generateApplicationContextWhenHasMultipleInitDestroyMethods() {
void processAheadOfTimeWhenHasMultipleInitDestroyMethods() {
GenericApplicationContext applicationContext = new GenericApplicationContext();
applicationContext.registerBeanDefinition(
AnnotationConfigUtils.COMMON_ANNOTATION_PROCESSOR_BEAN_NAME,
Expand All @@ -129,7 +129,7 @@ void generateApplicationContextWhenHasMultipleInitDestroyMethods() {
}

@Test
void generateApplicationContextWhenHasNoAotContributions() {
void processAheadOfTimeWhenHasNoAotContributions() {
GenericApplicationContext applicationContext = new GenericApplicationContext();
testCompiledResult(applicationContext, (initializer, compiled) -> {
GenericApplicationContext freshApplicationContext = toFreshApplicationContext(initializer);
Expand All @@ -140,7 +140,7 @@ void generateApplicationContextWhenHasNoAotContributions() {
}

@Test
void generateApplicationContextWhenHasBeanFactoryInitializationAotProcessorExcludesProcessor() {
void processAheadOfTimeWhenHasBeanFactoryInitializationAotProcessorExcludesProcessor() {
GenericApplicationContext applicationContext = new GenericApplicationContext();
applicationContext.registerBeanDefinition("test",
new RootBeanDefinition(NoOpBeanFactoryInitializationAotProcessor.class));
Expand All @@ -151,7 +151,7 @@ void generateApplicationContextWhenHasBeanFactoryInitializationAotProcessorExclu
}

@Test
void generateApplicationContextWhenHasBeanRegistrationAotProcessorExcludesProcessor() {
void processAheadOfTimeWhenHasBeanRegistrationAotProcessorExcludesProcessor() {
GenericApplicationContext applicationContext = new GenericApplicationContext();
applicationContext.registerBeanDefinition("test",
new RootBeanDefinition(NoOpBeanRegistrationAotProcessor.class));
Expand Down

0 comments on commit 1de0207

Please sign in to comment.