File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ Snapshot artifacts are deployed to Sonatype's {snapshot-repo}[snapshots reposito
9393 `junit-jupiter-engine`::
9494 JUnit Jupiter test engine implementation, only required at runtime.
9595 `junit-jupiter-params`::
96- Support for _parameterized tests_ in JUnit Jupiter.
96+ Support for <<writing-tests-parameterized-tests,parameterized tests>> in JUnit Jupiter.
9797 `junit-jupiter-migration-support`::
9898 Migration support from JUnit 4 to JUnit Jupiter,
9999 only required for running selected JUnit 4 rules.
Original file line number Diff line number Diff line change @@ -544,8 +544,8 @@ the `ConsoleLauncher` will print output similar to the following.
544544[subs="verbatim"]
545545----
546546testWithStringParameter(String) ✔
547- ├─ [1] a ✔
548- └─ [2] b ✔
547+ ├─ [1] Hello ✔
548+ └─ [2] World ✔
549549----
550550
551551[[writing-tests-parameterized-tests-setup]]
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ class ParameterizedTestDemo {
3939
4040 // tag::first_example[]
4141 @ ParameterizedTest
42- @ ValueSource (strings = { "a " , "b " })
42+ @ ValueSource (strings = { "Hello " , "World " })
4343 void testWithStringParameter (String argument ) {
4444 assertNotNull (argument );
4545 }
You can’t perform that action at this time.
0 commit comments