You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When JUnit 4 is being used, the @ExtendWith annotation would be dropped automatically by the JVM as it isn't on the classpath. Any ASM-based annotation discovery should already be sufficiently robust to ignore it too.
The text was updated successfully, but these errors were encountered:
As a convenience for those using JUnit 5, we could annotate our
@…Test
annotations with@ExtendWith(SpringExtension.class)
. This would mean that this:Could be this instead:
When JUnit 4 is being used, the
@ExtendWith
annotation would be dropped automatically by the JVM as it isn't on the classpath. Any ASM-based annotation discovery should already be sufficiently robust to ignore it too.The text was updated successfully, but these errors were encountered: