Repository: ant Updated Branches: refs/heads/master e4f117831 -> 405aa4f8e
Update the junitlauncher task documentation to list "includeEngines" and "excludeEngines" attribute for the test definition Project: http://git-wip-us.apache.org/repos/asf/ant/repo Commit: http://git-wip-us.apache.org/repos/asf/ant/commit/405aa4f8 Tree: http://git-wip-us.apache.org/repos/asf/ant/tree/405aa4f8 Diff: http://git-wip-us.apache.org/repos/asf/ant/diff/405aa4f8 Branch: refs/heads/master Commit: 405aa4f8e01cf50d8097e17ac115d766c6c1af70 Parents: e4f1178 Author: Jaikiran Pai <[email protected]> Authored: Sat Jun 2 09:16:37 2018 +0530 Committer: Jaikiran Pai <[email protected]> Committed: Sat Jun 2 09:16:56 2018 +0530 ---------------------------------------------------------------------- manual/Tasks/junitlauncher.html | 44 ++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ant/blob/405aa4f8/manual/Tasks/junitlauncher.html ---------------------------------------------------------------------- diff --git a/manual/Tasks/junitlauncher.html b/manual/Tasks/junitlauncher.html index 5f2d6bb..5a132f3 100644 --- a/manual/Tasks/junitlauncher.html +++ b/manual/Tasks/junitlauncher.html @@ -330,6 +330,28 @@ is <strong>not</strong> set</a>.</td> <td>No</td> </tr> + <tr> + <td>includeEngines</td> + <td>A comma separated set of test engine ids. If specified, only these test engine(s) + will be used for running the tests. + <br/> + For example: <code>includeEngines="junit-jupiter"</code> will only use the Jupiter + test engine for execution of the tests and will ignore any other engines that might + have been found in the classpath. + </td> + <td>No</td> + </tr> + <tr> + <td>excludeEngines</td> + <td>A comma separated set of test engine ids. If specified, these test engine(s) + will be excluded when running the tests. + <br/> + For example: <code>excludeEngines="junit-vintage"</code> will exclude the vintage + test engine during execution of the tests and will use any other engines that might + have been found in the classpath. + </td> + <td>No</td> + </tr> </table> <p> @@ -383,6 +405,28 @@ is <strong>not</strong> set</a>.</td> <td>No</td> </tr> + <tr> + <td>includeEngines</td> + <td>A comma separated set of test engine ids. If specified, only these test engine(s) + will be used for running the tests. + <br/> + For example: <code>includeEngines="junit-jupiter"</code> will only use the Jupiter + test engine for execution of the tests and will ignore any other engines that might + have been found in the classpath. + </td> + <td>No</td> + </tr> + <tr> + <td>excludeEngines</td> + <td>A comma separated set of test engine ids. If specified, these test engine(s) + will be excluded when running the tests. + <br/> + For example: <code>excludeEngines="junit-vintage"</code> will exclude the vintage + test engine during execution of the tests and will use any other engines that might + have been found in the classpath. + </td> + <td>No</td> + </tr> </table> <p>
