Spring Framework 7 has deprecated support for JUnit 4 and will remove it in 7.1 or 7.2. Aligned with this, we should consider what we want to do and when. For example, our javadoc mentions JUnit 4 in a number of places such as:
|
* When using JUnit 4, this annotation should be used in combination with |
|
* {@code @RunWith(SpringRunner.class)}. |
This is common across many (all?) of our test slice annotations. Should we remove this and similar now or wait until support's completely removed from Framework?
Spring Framework 7 has deprecated support for JUnit 4 and will remove it in 7.1 or 7.2. Aligned with this, we should consider what we want to do and when. For example, our javadoc mentions JUnit 4 in a number of places such as:
spring-boot/module/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/orm/jpa/DataJpaTest.java
Lines 66 to 67 in 96afc3f
This is common across many (all?) of our test slice annotations. Should we remove this and similar now or wait until support's completely removed from Framework?