diff options
author | Jaikiran Pai <jaikiran@apache.org> | 2018-06-02 09:16:37 +0530 |
---|---|---|
committer | Jaikiran Pai <jaikiran@apache.org> | 2018-06-02 09:16:56 +0530 |
commit | 405aa4f8e01cf50d8097e17ac115d766c6c1af70 (patch) | |
tree | 23c7045dce45099f1c541939a08fc167c34cf013 /manual | |
parent | e4f11783198988a726b5ae057ff8fb9238eac3a7 (diff) | |
download | ant-405aa4f8e01cf50d8097e17ac115d766c6c1af70.tar.gz |
Update the junitlauncher task documentation to list "includeEngines" and "excludeEngines" attribute for the test definition
Diffstat (limited to 'manual')
-rw-r--r-- | manual/Tasks/junitlauncher.html | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/manual/Tasks/junitlauncher.html b/manual/Tasks/junitlauncher.html index 5f2d6bb00..5a132f34b 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> |