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:
Brett Leslie Porter 2005-11-01 07:12:43 +00:00
parent 51650e5f15
commit 98b8ae3f06
1 changed files with 6 additions and 0 deletions

View File

@ -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>**&#47;${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>**&#47;Test*.java **&#47;*Test.java **&#47;*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>**&#47;Abstract*Test.java **&#47;Abstract*TestCase.java</code>
*
* @parameter
*/