File tree 1 file changed +1
-4
lines changed
spring-test/src/test/java/org/springframework/test/context/aot
1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2024 the original author or authors.
2
+ * Copyright 2002-2025 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -147,8 +147,6 @@ void endToEndTestsForEntireSpringTestModule() {
147
147
.filter (clazz -> clazz .getSimpleName ().endsWith ("Tests" ))
148
148
// TestNG EJB tests use @PersistenceContext which is not yet supported in tests in AOT mode.
149
149
.filter (clazz -> !clazz .getPackageName ().contains ("testng.transaction.ejb" ))
150
- // Uncomment the following to disable Bean Override tests since they are not yet supported in AOT mode.
151
- // .filter(clazz -> !clazz.getPackageName().contains("test.context.bean.override"))
152
150
.toList ();
153
151
154
152
// Optionally set failOnError flag to true to halt processing at the first failure.
@@ -169,7 +167,6 @@ void endToEndTestsForBeanOverrides() {
169
167
void endToEndTestsForSelectedTestClasses () {
170
168
List <Class <?>> testClasses = List .of (
171
169
org .springframework .test .context .bean .override .easymock .EasyMockBeanIntegrationTests .class ,
172
- org .springframework .test .context .bean .override .mockito .MockitoBeanForByNameLookupIntegrationTests .class ,
173
170
org .springframework .test .context .junit4 .SpringJUnit4ClassRunnerAppCtxTests .class ,
174
171
org .springframework .test .context .junit4 .ParameterizedDependencyInjectionTests .class
175
172
);
You can’t perform that action at this time.
0 commit comments