Skip to content

Commit eb36a32

Browse files
committed
Small documentation improvements
1 parent 8a6d5ca commit eb36a32

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

documentation/src/docs/asciidoc/overview.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -544,8 +544,8 @@ the `ConsoleLauncher` will print output similar to the following.
544544
[subs="verbatim"]
545545
----
546546
testWithStringParameter(String) ✔
547-
├─ [1] a
548-
└─ [2] b
547+
├─ [1] Hello
548+
└─ [2] World
549549
----
550550

551551
[[writing-tests-parameterized-tests-setup]]

documentation/src/test/java/example/ParameterizedTestDemo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)