Skip to content

Commit

Permalink
Generated by gradle-git-publish.
Browse files Browse the repository at this point in the history
  • Loading branch information
junit-builds committed Oct 23, 2024
1 parent bc2cf8d commit 0055069
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 26 deletions.
3 changes: 3 additions & 0 deletions docs/snapshot/release-notes/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -570,6 +570,9 @@ <h4 id="release-notes-5.12.0-M1-junit-platform-new-features-and-improvements"><a
<p>Add support for passing line and column number to <code>ConsoleLauncher</code> via
<code>--select-file</code> and <code>--select-resource</code>.</p>
</li>
<li>
<p><code>ConsoleLauncher</code> now accepts multiple values for all <code>--select</code> options.</p>
</li>
</ul>
</div>
</div>
Expand Down
62 changes: 36 additions & 26 deletions docs/snapshot/user-guide/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8729,27 +8729,32 @@ <h5 id="running-tests-console-launcher-options-discovering-tests"><a class="anch
roots that are not on the classpath will be silently ignored.
This option can be repeated.
--scan-modules Scan all resolved modules for test discovery.
-u, --select-uri=URI Select a URI for test discovery. This option can be repeated.
-f, --select-file=FILE Select a file for test discovery. The line and column numbers can
-u, --select-uri=URI... Select a URI for test discovery. This option can be repeated.
-f, --select-file=FILE... Select a file for test discovery. The line and column numbers can
be provided as URI query parameters (e.g. foo.txt?
line=12&amp;column=34). This option can be repeated.
-d, --select-directory=DIR Select a directory for test discovery. This option can be
-d, --select-directory=DIR...
Select a directory for test discovery. This option can be
repeated.
-o, --select-module=NAME Select single module for test discovery. This option can be
-o, --select-module=NAME...
Select single module for test discovery. This option can be
repeated.
-p, --select-package=PKG Select a package for test discovery. This option can be repeated.
-c, --select-class=CLASS Select a class for test discovery. This option can be repeated.
-m, --select-method=NAME Select a method for test discovery. This option can be repeated.
-r, --select-resource=RESOURCE
Select a classpath resource for test discovery. The line and
column numbers can be provided as URI query parameters (e.g.
foo.csv?line=12&amp;column=34). This option can be repeated.
-i, --select-iteration=PREFIX:VALUE[INDEX(..INDEX)?(,INDEX(..INDEX)?)*]
-p, --select-package=PKG...
Select a package for test discovery. This option can be repeated.
-c, --select-class=CLASS...
Select a class for test discovery. This option can be repeated.
-m, --select-method=NAME...
Select a method for test discovery. This option can be repeated.
-r, --select-resource=RESOURCE...
Select a classpath resource for test discovery. This option can
be repeated.
-i, --select-iteration=PREFIX:VALUE[INDEX(..INDEX)?(,INDEX(..INDEX)?)*]...
Select iterations for test discovery via a prefixed identifier
and a list of indexes or index ranges (e.g. method:com.acme.
Foo#m()[1..2] selects the first and second iteration of the m()
method in the com.acme.Foo class). This option can be repeated.
--select=PREFIX:VALUE Select via a prefixed identifier (e.g. method:com.acme.Foo#m
--select=PREFIX:VALUE...
Select via a prefixed identifier (e.g. method:com.acme.Foo#m
selects the m() method in the com.acme.Foo class). This option
can be repeated.

Expand Down Expand Up @@ -8843,27 +8848,32 @@ <h5 id="running-tests-console-launcher-options-executing-tests"><a class="anchor
roots that are not on the classpath will be silently ignored.
This option can be repeated.
--scan-modules Scan all resolved modules for test discovery.
-u, --select-uri=URI Select a URI for test discovery. This option can be repeated.
-f, --select-file=FILE Select a file for test discovery. The line and column numbers can
-u, --select-uri=URI... Select a URI for test discovery. This option can be repeated.
-f, --select-file=FILE... Select a file for test discovery. The line and column numbers can
be provided as URI query parameters (e.g. foo.txt?
line=12&amp;column=34). This option can be repeated.
-d, --select-directory=DIR Select a directory for test discovery. This option can be
-d, --select-directory=DIR...
Select a directory for test discovery. This option can be
repeated.
-o, --select-module=NAME Select single module for test discovery. This option can be
-o, --select-module=NAME...
Select single module for test discovery. This option can be
repeated.
-p, --select-package=PKG Select a package for test discovery. This option can be repeated.
-c, --select-class=CLASS Select a class for test discovery. This option can be repeated.
-m, --select-method=NAME Select a method for test discovery. This option can be repeated.
-r, --select-resource=RESOURCE
Select a classpath resource for test discovery. The line and
column numbers can be provided as URI query parameters (e.g.
foo.csv?line=12&amp;column=34). This option can be repeated.
-i, --select-iteration=PREFIX:VALUE[INDEX(..INDEX)?(,INDEX(..INDEX)?)*]
-p, --select-package=PKG...
Select a package for test discovery. This option can be repeated.
-c, --select-class=CLASS...
Select a class for test discovery. This option can be repeated.
-m, --select-method=NAME...
Select a method for test discovery. This option can be repeated.
-r, --select-resource=RESOURCE...
Select a classpath resource for test discovery. This option can
be repeated.
-i, --select-iteration=PREFIX:VALUE[INDEX(..INDEX)?(,INDEX(..INDEX)?)*]...
Select iterations for test discovery via a prefixed identifier
and a list of indexes or index ranges (e.g. method:com.acme.
Foo#m()[1..2] selects the first and second iteration of the m()
method in the com.acme.Foo class). This option can be repeated.
--select=PREFIX:VALUE Select via a prefixed identifier (e.g. method:com.acme.Foo#m
--select=PREFIX:VALUE...
Select via a prefixed identifier (e.g. method:com.acme.Foo#m
selects the m() method in the com.acme.Foo class). This option
can be repeated.

Expand Down

0 comments on commit 0055069

Please sign in to comment.