Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated documentation in SUREFIRE-1047 and SUREFIRE-1097 and SUREFIRE-1081 #61

Merged
merged 1 commit into from
Oct 26, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Updated documentation in SUREFIRE-1047 and SUREFIRE-1097
  • Loading branch information
tibordigana committed Oct 26, 2014
commit 604147c54bbe90444f5188e6f084c943b00e39ca
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,12 @@ public class IntegrationTestMojo
* Each include item may also contain a comma-separated sublist of items, which will be treated as multiple
* &nbsp;&lt;include> entries.<br/>
* <p/>
* This parameter is ignored if the TestNG <code>suiteXmlFiles</code> parameter is specified.
* This parameter is ignored if the TestNG <code>suiteXmlFiles</code> parameter is specified.<br/>
* <br/>
* <em>Notice that</em> these values are relative to the directory containing generated test classes of the project
* being tested. This directory is declared by the parameter <code>testClassesDirectory</code> which defaults
* to the POM property <code>${project.build.testOutputDirectory}</code>, typically <em>src/test/java</em>
* unless overridden.
*/
@Parameter
private List<String> includes;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,11 @@ public abstract class AbstractSurefireMojo
* <p/>
* Each exclude item may also contain a comma-separated sublist of items, which will be treated as multiple
* &nbsp;&lt;exclude> entries.<br/>
* <br/>
* <em>Notice that</em> these values are relative to the directory containing generated test classes of the project
* being tested. This directory is declared by the parameter <code>testClassesDirectory</code> which defaults
* to the POM property <code>${project.build.testOutputDirectory}</code>, typically <em>src/test/java</em>
* unless overridden.
*/
@Parameter
protected List<String> excludes;
Expand Down Expand Up @@ -342,6 +347,15 @@ public abstract class AbstractSurefireMojo

/**
* Arbitrary JVM options to set on the command line.
* <br/>
* <br/>
* Using an alternate syntax for <em>argLine</em>, <pre>@{...}</pre> allows late replacement of properties when the
* plugin is executed, so properties that have been modified by other plugins will be picked up correctly.
* <br/>
* See the Frequently Asked Questions page with more details:<br/>
* http://maven.apache.org/surefire/maven-surefire-plugin/faq.html
* <br/>
* http://maven.apache.org/surefire/maven-failsafe-plugin/faq.html
*
* @since 2.1
*/
Expand Down Expand Up @@ -482,9 +496,9 @@ public abstract class AbstractSurefireMojo
protected boolean useUnlimitedThreads;

/**
* (TestNG only) When you use the <code>parallel</code> attribute, TestNG will try to run all your test methods in
* separate threads, except for methods that depend on each other, which will be run in the same thread in order to
* respect their order of execution.
* (TestNG provider) When you use the <code>parallel</code> attribute, TestNG will try to run all your test methods
* in separate threads, except for methods that depend on each other, which will be run in the same thread in order
* to respect their order of execution.
* <p/>
* (JUnit 4.7 provider) Supports values "classes"/"methods"/"both" to run in separate threads, as controlled by
* <code>threadCount</code>.<br/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,12 @@ public class SurefirePlugin
* Each include item may also contain a comma-separated sublist of items, which will be treated as multiple
* &nbsp;&lt;include> entries.<br/>
* <p/>
* This parameter is ignored if the TestNG <code>suiteXmlFiles</code> parameter is specified.
* This parameter is ignored if the TestNG <code>suiteXmlFiles</code> parameter is specified.<br/>
* <br/>
* <em>Notice that</em> these values are relative to the directory containing generated test classes of the project
* being tested. This directory is declared by the parameter <code>testClassesDirectory</code> which defaults
* to the POM property <code>${project.build.testOutputDirectory}</code>, typically <em>src/test/java</em>
* unless overridden.
*/
@Parameter
private List<String> includes;
Expand Down