mirror of https://github.com/apache/maven.git
PR: MNG-1342
Submitted by: Jerome Lacoste improve surefire plugin docs git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@329998 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
51650e5f15
commit
98b8ae3f06
|
@ -100,6 +100,8 @@ public class SurefirePlugin
|
|||
|
||||
/**
|
||||
* Specify this parameter if you want to use the test regex notation to select tests to run.
|
||||
* The regular expression will be used to create an include pattern formatted like <code>**/${test}.java</code>
|
||||
* When used, the <code>includes</code> and <code>excludes</code> patterns parameters are ignored
|
||||
*
|
||||
* @parameter expression="${test}"
|
||||
*/
|
||||
|
@ -107,6 +109,8 @@ public class SurefirePlugin
|
|||
|
||||
/**
|
||||
* List of patterns (separated by commas) used to specify the tests that should be included in testing.
|
||||
* When not specified and whent the <code>test</code> parameter is not specified, the default includes will be
|
||||
* <code>**/Test*.java **/*Test.java **/*TestCase.java</code>
|
||||
*
|
||||
* @parameter
|
||||
*/
|
||||
|
@ -114,6 +118,8 @@ public class SurefirePlugin
|
|||
|
||||
/**
|
||||
* List of patterns (separated by commas) used to specify the tests that should be excluded in testing.
|
||||
* When not specified and whent the <code>test</code> parameter is not specified, the default excludes will be
|
||||
* <code>**/Abstract*Test.java **/Abstract*TestCase.java</code>
|
||||
*
|
||||
* @parameter
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue