@@ -41,7 +41,7 @@ repository on GitHub.
41
41
42
42
* Introduce new `Launcher.execute({LauncherExecutionRequest})` API with corresponding
43
43
`LauncherExecutionRequestBuilder` to enable the addition of parameters to test
44
- executions without additional overloads of `execute`.
44
+ executions without additional overloads of `execute(...) `.
45
45
* Introduce `LauncherDiscoveryRequestBuilder.forExecution()` method as a convenience
46
46
method for constructing a `{LauncherExecutionRequest}` that contains a
47
47
`{LauncherDiscoveryRequest}`.
@@ -54,7 +54,7 @@ repository on GitHub.
54
54
now causes test execution to be cancelled after the first failed test.
55
55
* Provide cancellation support for implementations of `{HierarchicalTestEngine}` such as
56
56
JUnit Jupiter, Spock, and Cucumber.
57
- * Provide cancellation support for the Suite and Vintage test engines
57
+ * Provide cancellation support for the `@ Suite` test engine.
58
58
* Introduce `TestTask.getTestDescriptor()` method for use in
59
59
`HierarchicalTestExecutorService` implementations.
60
60
* Introduce `computeIfAbsent(...)` methods in `NamespacedHierarchicalStore` to simplify
@@ -72,11 +72,11 @@ repository on GitHub.
72
72
[[release-notes-6.0.0-M2-junit-jupiter-deprecations-and-breaking-changes]]
73
73
==== Deprecations and Breaking Changes
74
74
75
- * Change return type of `provideTestTemplateInvocationContexts(ExtensionContext)` method
76
- of the `TestTemplateInvocationContextProvider` interface from
75
+ * Change the return type of the `provideTestTemplateInvocationContexts(ExtensionContext)`
76
+ method in the `TestTemplateInvocationContextProvider` interface from
77
77
`Stream<TestTemplateInvocationContext>` to
78
78
`Stream<? extends TestTemplateInvocationContext>`.
79
- * Remove support for `junit.jupiter.params.arguments.conversion.locale.format`
79
+ * Remove support for the `junit.jupiter.params.arguments.conversion.locale.format`
80
80
configuration parameter. `Locale` conversions are now always performed using the IETF
81
81
BCP 47 language tag format supported by the `Locale.forLanguageTag(String)` factory
82
82
method.
@@ -100,7 +100,7 @@ repository on GitHub.
100
100
`fruit = apple` instead of `fruit=apple`.
101
101
* Reason strings supplied to `ConditionEvaluationResult` APIs are now officially declared
102
102
as `@Nullable`.
103
- * Introduce `computeIfAbsent(...)` methods in `ExtensionContext.Store` to ease simplify
103
+ * Introduce `computeIfAbsent(...)` methods in `ExtensionContext.Store` to simplify working
104
104
with non-nullable types.
105
105
106
106
@@ -120,4 +120,4 @@ repository on GitHub.
120
120
[[release-notes-6.0.0-M2-junit-vintage-new-features-and-improvements]]
121
121
==== New Features and Improvements
122
122
123
- * ❓
123
+ * Provide cancellation support for the Vintage test engine.
0 commit comments