File tree 1 file changed +4
-0
lines changed
spring-test/src/test/java/org/springframework/test/context/aot
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -137,6 +137,8 @@ void endToEndTestsForEntireSpringTestModule() {
137
137
.filter (clazz -> clazz .getSimpleName ().endsWith ("Tests" ))
138
138
// TestNG EJB tests use @PersistenceContext which is not yet supported in tests in AOT mode.
139
139
.filter (clazz -> !clazz .getPackageName ().contains ("testng.transaction.ejb" ))
140
+ // Uncomment the following to disable Bean Override tests since they are not yet supported in AOT mode.
141
+ // .filter(clazz -> !clazz.getPackageName().contains("test.context.bean.override"))
140
142
.toList ();
141
143
142
144
// Optionally set failOnError flag to true to halt processing at the first failure.
@@ -147,6 +149,8 @@ void endToEndTestsForEntireSpringTestModule() {
147
149
@ Test
148
150
void endToEndTestsForSelectedTestClasses () {
149
151
List <Class <?>> testClasses = List .of (
152
+ org .springframework .test .context .bean .override .convention .TestBeanIntegrationTests .class ,
153
+ org .springframework .test .context .bean .override .mockito .MockitoBeanIntegrationTests .class ,
150
154
org .springframework .test .context .junit4 .SpringJUnit4ClassRunnerAppCtxTests .class ,
151
155
org .springframework .test .context .junit4 .ParameterizedDependencyInjectionTests .class
152
156
);
You can’t perform that action at this time.
0 commit comments