Skip to content

Commit d02b53b

Browse files
committed
Add more references to Parameterized Containers
1 parent 0ad8d37 commit d02b53b

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

documentation/src/docs/asciidoc/user-guide/appendix.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Please refer to the corresponding sections for <<running-tests-build-maven-bom,
105105
`junit-jupiter-engine`::
106106
JUnit Jupiter test engine implementation; only required at runtime.
107107
`junit-jupiter-params`::
108-
Support for <<writing-tests-parameterized-tests,parameterized tests>> in JUnit Jupiter.
108+
Support for <<writing-tests-parameterized-tests>> in JUnit Jupiter.
109109
`junit-jupiter-migrationsupport`::
110110
Support for migrating from JUnit 4 to JUnit Jupiter; only required for support for
111111
JUnit 4's `@Ignore` annotation and for running selected JUnit 4 rules.

documentation/src/docs/asciidoc/user-guide/extensions.adoc

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -804,6 +804,9 @@ implementing different kinds of tests that rely on repetitive invocation of _all
804804
methods in a test class albeit in different contexts — for example, with different
805805
parameters, by preparing the test class instance differently, or multiple times without
806806
modifying the context.
807+
Please refer to the implementations of
808+
<<writing-tests-parameterized-tests, Parameterized Containers>> which uses this extension
809+
point to provide its functionality.
807810

808811
[[extensions-test-templates]]
809812
=== Providing Invocation Contexts for Test Templates
@@ -839,8 +842,8 @@ implementing different kinds of tests that rely on repetitive invocation of a te
839842
method albeit in different contexts — for example, with different parameters, by preparing
840843
the test class instance differently, or multiple times without modifying the context.
841844
Please refer to the implementations of <<writing-tests-repeated-tests>> or
842-
<<writing-tests-parameterized-tests>> which use this extension point to provide their
843-
functionality.
845+
<<writing-tests-parameterized-tests, Parameterized Tests>> which use this extension point
846+
to provide their functionality.
844847

845848
[[extensions-keeping-state]]
846849
=== Keeping State in Extensions

documentation/src/docs/asciidoc/user-guide/writing-tests.adoc

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2634,6 +2634,9 @@ Each invocation of a container template class behaves like the execution of a re
26342634
class with full support for the same lifecycle callbacks and extensions. Please refer to
26352635
<<extensions-container-templates>> for usage examples.
26362636

2637+
NOTE: <<writing-tests-parameterized-tests, Parameterized Containers>> are built-in
2638+
specializations of container templates.
2639+
26372640
[[writing-tests-test-templates]]
26382641
=== Test Templates
26392642

@@ -2645,8 +2648,9 @@ invocation of a test template method behaves like the execution of a regular `@T
26452648
method with full support for the same lifecycle callbacks and extensions. Please refer to
26462649
<<extensions-test-templates>> for usage examples.
26472650

2648-
NOTE: <<writing-tests-repeated-tests>> and <<writing-tests-parameterized-tests>> are
2649-
built-in specializations of test templates.
2651+
NOTE: <<writing-tests-repeated-tests>> and
2652+
<<writing-tests-parameterized-tests, Parameterized Tests>> are built-in specializations of
2653+
test templates.
26502654

26512655
[[writing-tests-dynamic-tests]]
26522656
=== Dynamic Tests

0 commit comments

Comments
 (0)