We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 176ea5e commit 3aefa88Copy full SHA for 3aefa88
spring-beans/src/test/java/org/springframework/beans/factory/aot/BeanRegistrationsAotProcessorTests.java
@@ -33,6 +33,13 @@
33
*/
34
class BeanRegistrationsAotProcessorTests {
35
36
+ @Test
37
+ void beanRegistrationsAotProcessorIsRegistered() {
38
+ assertThat(new AotFactoriesLoader(new DefaultListableBeanFactory())
39
+ .load(BeanFactoryInitializationAotProcessor.class))
40
+ .anyMatch(BeanRegistrationsAotProcessor.class::isInstance);
41
+ }
42
+
43
@Test
44
void processAheadOfTimeReturnsBeanRegistrationsAotContributionWithRegistrations() {
45
BeanRegistrationsAotProcessor processor = new BeanRegistrationsAotProcessor();
0 commit comments