@@ -59,6 +59,9 @@ repository on GitHub.
5959 tests in the class template or to set up each invocation of the class template
6060 differently. Please refer to the
6161 <<../user-guide/index.adoc#writing-tests-class-templates, User Guide>> for details.
62+ * New `BeforeClassTemplateInvocationCallback` and `AfterClassTemplateInvocationCallback`
63+ extension callback interfaces allow implementing extensions that are invoked before and
64+ after each invocation of a class template.
6265* New `@ParameterizedClass` support that builds on `@ClassTemplate` and allows declaring a
6366 top-level or `@Nested` test class as a parameterized test class to be invoked multiple
6467 times with different arguments. The same `@...Source` annotations supported with
@@ -68,14 +71,16 @@ repository on GitHub.
6871* New `@ParameterizedClass`-specific
6972 `@BeforeParameterizedClassInvocation`/`@AfterParameterizedClassInvocation` lifecycle
7073 methods that are invoked once before/after each invocation of the parameterized class.
74+ * Provide access to the parameters and resolved arguments of a `@ParameterizedTest` or
75+ `@ParameterizedClass` by storing `ParameterInfo` in the `ExtensionContext.Store` for
76+ retrieval by other extensions. Please refer to the
77+ link:../api/org.junit.jupiter.params/org/junit/jupiter/params/support/ParameterInfo.html[Javadoc]
78+ for details.
7179* New `@SentenceFragment` annotation which allows one to supply custom text for individual
7280 sentence fragments when using the `IndicativeSentences` `DisplayNameGenerator`. See the
7381 updated documentation in the
7482 <<../user-guide/index.adoc#writing-tests-display-name-generator, User Guide>> for an
7583 example.
76- * New `BeforeClassTemplateInvocationCallback` and `AfterClassTemplateInvocationCallback`
77- extension callback interfaces allow implementing extensions that are invoked before and
78- after each invocation of a class template.
7984* New `TestTemplateInvocationContext.prepareInvocation(ExtensionContext)` callback method
8085 which allows extensions to prepare the `ExtensionContext` before the test template
8186 method is invoked. This may be used, for example, to store entries in the
0 commit comments