mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-20 12:19:16 +00:00
Spring Framework 5.2 introduced an EventPublishingTestExecutionListener in the Spring TestContext Framework. This listener is automatically registered via the spring.factories mechanism; however, this listener is not registered in the abstract JUnit 4 and TestNG base classes. This commit addresses this oversight by explicitly registering the EventPublishingTestExecutionListener in the following classes. - AbstractJUnit4SpringContextTests - AbstractTransactionalJUnit4SpringContextTests - AbstractTestNGSpringContextTests - AbstractTransactionalTestNGSpringContextTests Closes gh-23748