This document contains the change log for all JUnit 5 releases since 5.10 GA.
Please refer to the User Guide for comprehensive reference documentation for programmers writing tests, extension authors, and engine authors as well as build tool and IDE vendors.
5.11.0
Date of Release: August 14, 2024
Scope:
-
@FieldSourceannotation for use with@ParameterizedTestmethods -
Repeatable
@..Sourceannotations for parameterized tests -
Enhancements for authoring dynamic and parameterized tests
-
@AutoCloseannotation to automatically close field resources in tests -
ConversionSupportutility for converting from a string to a supported target type -
Extensible syntax for specifying discovery selectors
-
@BeforeSuiteand@AfterSuiteannotations -
Classpath resource scanning support for engines
-
Numerous bug fixes and enhancements regarding field and method search algorithms
For a complete list of all closed issues and pull requests for this release, consult the 5.11.0-M1, 5.11.0-M2, 5.11.0-RC1, and 5.11.0 milestone pages in the JUnit repository on GitHub.
JUnit Platform
Bug Fixes
-
Field and method search algorithms now adhere to standard Java semantics regarding whether a given field or method is visible or overridden according to the rules of the Java language. See the new Field and Method Search Semantics section of the User Guide for details.
-
ReflectionSupport.findFields(…)now returns a distinct set of fields. -
Fixed parsing of recursive jar URIs which allows the JUnit Platform Launcher to be used inside Spring Boot executable jars for Spring Boot 3.2 and later.
-
The
junit-platform-suite-enginenow includes configuration provided via@ConfigurationParameterwhen selecting tests byUniqueId(backported to 5.10.3). -
In order to support using
@EnabledInNativeImageon test classes,UniqueIdTrackingListenernow tracks descendants of skipped test containers (backported to 5.10.3). -
Attempting to deserialize a
TestIdentifierno longer causes aNullPointerExceptionwhen there is no parent identifier. See issue 3819 (backported to 5.10.3).
Deprecations and Breaking Changes
-
As mentioned in the Bug Fixes section above, field and method search algorithms now adhere to standard Java semantics regarding whether a given field or method is visible or overridden according to the rules of the Java language. The changes in the search algorithms may, however, result in breaking changes for some use cases. In light of that, it is possible to revert to the previous "legacy semantics". See the new Field and Method Search Semantics section of the User Guide for details.
New Features and Improvements
-
New
ConversionSupportutility injunit-platform-commonswhich exposes the conversion logic that was previously private to JUnit Jupiter’s@ParameterizedTestinfrastructure — for use in third-party extensions and test engines. -
Error messages for type mismatches in
NamespacedHierarchicalStorenow include the actual type and value in addition to the required type. -
Updated
open-test-reportingdependency to0.1.0-M2. -
All Platform implementations of
DiscoverySelectornow have a parseable string representation that can be generated by calling the newDiscoverySelector.toIdentifier()method andtoString()on the returnedDiscoverySelectorIdentifier. This string representation can be used to reconstruct the originalDiscoverySelectorby calling the newDiscoverySelectors.parse()method. This change will allow build tools and IDEs to provide generic mechanisms for specifying selectors on the command line or in configuration files without having to support each selector type individually.-
The Console Launcher supports specifying selectors via their identifiers using the
--selectoption. For example,--select class:foo.Barwill run all tests in thefoo.Barclass. -
Similarly, the JUnit Platform Suite engine provides a new
@Select("<identifier>")annotation.
-
-
The Console Launcher now provides a
--versionoption. -
NamespacedHierarchicalStorenow throws anIllegalStateExceptionfor any attempt to modify or query the store after it has been closed. In addition, an attempt to close a store that has already been closed will have no effect.-
See issue 3614 for details.
-
-
Introduce
@ConfigurationParametersResourcefor@Suiteclasses and--config-resourceoption for ConsoleLauncher that allow specifying additional properties files on the classpath as sources of configuration parameters. -
New
rootCause()condition inTestExecutionResultConditionsthat matches if an exception’s root cause matches all supplied conditions, for use with theEngineTestKit. -
ReflectionSupportnow supports scanning for classpath resources. -
Introduce
@BeforeSuiteand@AfterSuitelifecycle methods for@Suiteclasses.
JUnit Jupiter
Bug Fixes
-
Due to changes in the JUnit Platform regarding field and method search algorithms (see Bug Fixes above), numerous bugs have been addressed within JUnit Jupiter, including but not limited to the following.
-
Two
@TempDirfields with the same name in a superclass and subclass will now both be injected. -
Two
@Testmethods with the same signature in a superclass and subclass will now both be invoked, as long as the@Testmethod in the subclass does not override the@Testmethod in the superclass, which can occur if the superclass method isprivateor if the superclass method is package-private and resides in a different package than the subclass.-
The same applies to other types of test methods (
@TestFactory,@ParameterizedTest, etc.) as well as lifecycle methods (@BeforeAll,@AfterAll,@BeforeEach, and@AfterEach).
-
-
-
MethodOrderer.RandomandClassOrderer.Randomnow use the same default seed that is generated during class initialization (backported to 5.10.3). -
TestInstancePostProcessorextensions can now be registered via the@ExtendWithannotation on non-static fields. -
Methods and constructors invoked via
ExecutableInvokernow use the same extensions as the context they are invoked from and the sameExtensionContextis passed to registered instances ofParameterResolver. -
The
org.junit.jupiter.api.extension.supportpackage is now exported from theorg.junit.jupiter.apimodule
Deprecations and Breaking Changes
-
The registration order of extensions was changed to allow non-static fields to be processed earlier. This change may affect extensions that rely on the order of registration.
-
Kotlin support now depends on Kotlin API and language version 1.6; whereas, it previously depended on version 1.3.
New Features and Improvements
-
New
@FieldSourceannotation for use with@ParameterizedTestmethods which allows you to source arguments from a local field or an external field referenced by fully qualified field name. This feature is similar to the existing@MethodSourcefeature. See the User Guide for details. -
New
@AutoCloseannotation that can be applied to fields within tests to automatically close the annotated resource after test execution. See the User Guide for details. -
JAVA_23andJAVA_24have been added to theJREenum for use with JRE-based execution conditions. -
New Exception Handling documentation in the User Guide.
-
Improved documentation for Assumptions in the User Guide.
-
Improved Javadoc for
assertThrows()andassertThrowsExactly()to make it clear that the supplied message is not the expected message of the thrown exception. -
Improved documentation for semantics of a disabled test regarding class-level lifecycle methods and callbacks.
-
@..Sourceannotations for parameterized tests can now be used as repeatable annotations. See the User Guide for details. -
New
argumentSet()factory method for providing a custom name for an entire set of arguments for a@ParameterizedTest. See the User Guide for details. -
New
assertInstanceOfmethods added for Kotlin following up with similar JavaassertInstanceOfmethods introduced in5.8version. -
New generators in
DynamicTestthat take aStream/IteratorofNamed<Executable>along with a convenientNamedExecutableinterface that can simplify writing dynamic tests, in particular in recent versions of Java that support records. -
@TempDirnow suppressesNoSuchFileExceptionwhen attempting to delete files that may have been already deleted by another thread or process. -
@TempDirnow fails fast in caseTempDirFactory::createTempDirectoryreturnsnull, a file, or a symbolic link to a file. -
@TempDirnow fails fast in case the annotated target is of typeFileandTempDirFactory::createTempDirectoryreturns aPaththat does not belong to the default file system. -
Allow potentially unlimited characters per column in
@CsvSourceand@CsvFileSourceby specifyingmaxCharsPerColumn = -1.
5.10.3
Date of Release: June 27, 2024
Scope: Bug fixes and enhancements since 5.10.2
For a complete list of all closed issues and pull requests for this release, consult the 5.10.3 milestone page in the JUnit repository on GitHub.
JUnit Platform
Bug Fixes
-
The
junit-platform-suite-enginenow includes configuration provided via@ConfigurationParameterwhen selecting tests byUniqueId. -
In order to support using
@EnabledInNativeImageon test classes,UniqueIdTrackingListenernow tracks descendants of skipped test containers. -
Attempting to deserialize a
TestIdentifierno longer causes aNullPointerExceptionwhen there is no parent identifier. See issue 3819.
5.10.2
Date of Release: February 4, 2024
Scope: minor bug fixes and changes since 5.10.1.
For a complete list of all closed issues and pull requests for this release, consult the 5.10.2 milestone page in the JUnit repository on GitHub.
JUnit Platform
Bug Fixes
-
The
junit-platform-launchermay now be used as a Java module whenjunit.platform.launcher.interceptors.enabledis set totrue.-
See issue #3561 for details.
-
Deprecations and Breaking Changes
-
Field predicates are no longer applied eagerly while searching the type hierarchy.
-
This reverts changes made in 5.10.1 that affected
findFields(…)andstreamFields(…)inReflectionSupportas well asfindAnnotatedFields(…)andfindAnnotatedFieldValues(…)inAnnotationSupport. -
See issue #3638 for details.
-
-
Method predicates are no longer applied eagerly while searching the type hierarchy.
-
This reverts changes made in 5.10.1 that affected
findMethods(…)andstreamMethods(…)inReflectionSupportas well asfindAnnotatedMethods(…)inAnnotationSupport. -
See issue #3600 for details.
-
JUnit Jupiter
Bug Fixes
-
JUnit Jupiter once again properly detects when a
@Testmethod is overridden in a subclass.-
See issue #3600 for details.
-
Deprecations and Breaking Changes
-
A package-private static field annotated with
@TempDiris once again shadowed by a non-static field annotated with@TempDirwhen the non-static field resides in a different package and has the same name as the static field.-
This reverts changes made in 5.10.1.
-
See issue #3638 for details.
-
-
A package-private class-level lifecycle method annotated with
@BeforeAllor@AfterAllis once again shadowed by a method-level lifecycle method annotated with@BeforeEachor@AfterEachwhen the method-level lifecycle method resides in a different package and has the same name as the class-level lifecycle method.-
This reverts changes made in 5.10.1.
-
See issue #3600 for details.
-
5.10.1
Date of Release: November 5, 2023
Scope: minor bug fixes and improvements since 5.10.0.
For a complete list of all closed issues and pull requests for this release, consult the 5.10.1 milestone page in the JUnit repository on GitHub.
JUnit Platform
Bug Fixes
-
Field predicates are now applied while searching the type hierarchy. This fixes bugs in
findFields(…)andstreamFields(…)inReflectionSupportas well asfindAnnotatedFields(…)andfindAnnotatedFieldValues(…)inAnnotationSupport.-
See issue 3532 for details.
-
-
Method predicates are now applied while searching the type hierarchy. This fixes bugs in
findMethods(…)andstreamMethods(…)inReflectionSupportas well asfindAnnotatedMethods(…)inAnnotationSupport.-
See issue 3498 for details.
-
JUnit Jupiter
Bug Fixes
-
A package-private static field annotated with
@TempDiris no longer shadowed by a non-static field annotated with@TempDirwhen the non-static field resides in a different package and has the same name as the static field.-
See issue 3532 for details.
-
-
A package-private class-level lifecycle method annotated with
@BeforeAllor@AfterAllis no longer shadowed by a method-level lifecycle method annotated with@BeforeEachor@AfterEachwhen the method-level lifecycle method resides in a different package and has the same name as the class-level lifecycle method.-
See issue 3498 for details.
-
-
The
ON_SUCCESScleanup mode of@TempDirnow takes into account failures of test methods and nested tests when it’s declared on the class level, e.g. as a static field. -
The
RandomNumberExtensionexample in the User Guide has been updated to properly supportIntegertypes as well as non-static field injection.
5.10.0
Date of Release: July 23, 2023
Scope:
-
Promotion of various experimental APIs to stable
-
New
LauncherInterceptorSPI -
New
testfeeddetails mode forConsoleLauncher -
New
ConsoleLaunchersubcommand for test discovery without execution -
Dry-run mode for test execution
-
New
NamespacedHierarchicalStorefor use in third-party test engines -
Stacktrace pruning to hide internal JUnit calls
-
New
@SelectMethodsupport in test@Suiteclasses. -
New
TempDirFactorySPI for customizing how temporary directories are created -
Failure threshold for
@RepeatedTest -
New convenience base classes for implementing
ArgumentsProviderandArgumentConverter -
Custom class loader support for class/method selectors,
@MethodSource,@EnabledIf, and@DisabledIf -
Improved configurability of parallel execution
-
Numerous bug fixes and minor improvements
For complete details consult the 5.10.0 Release Notes online.