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

[SUREFIRE-1964] Support for method filtering on excludesFile and includesFile #490

Merged
merged 2 commits into from Mar 17, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -364,6 +364,11 @@ public class IntegrationTestMojo
* **{@literal /}NotIncludedByDefault.java
* %regex[.*IT.*|.*Not.*]
* </code></pre>
* <br>
* Since 3.0.0-M6, method filtering support is provided in the inclusions file as well, example:
* <pre><code>
* pkg.SomeIT#testMethod
* </code></pre>
*
* @since 2.13
*/
Expand All @@ -379,6 +384,11 @@ public class IntegrationTestMojo
* **{@literal /}DontRunIT.*
* %regex[.*IT.*|.*Not.*]
* </code></pre>
* <br>
* Since 3.0.0-M6, method filtering support is provided in the exclusions file as well, example:
* <pre><code>
* pkg.SomeIT#testMethod
* </code></pre>
*
* @since 2.13
*/
Expand Down
Expand Up @@ -355,11 +355,10 @@ public class SurefirePlugin
* **{@literal /}NotIncludedByDefault.java
* %regex[.*Test.*|.*Not.*]
* </code></pre>
*
* Since 3.0.0-M6, method filtering support is provided in includes file. Example:
* <br>
* Since 3.0.0-M6, method filtering support is provided in the inclusions file as well, example:
* <pre><code>
* foo.bar.SomeTest#test
* com.test.Test#testMethod
* pkg.SomeTest#testMethod
* </code></pre>
*
* @since 2.13
Expand All @@ -376,10 +375,9 @@ public class SurefirePlugin
* %regex[.*Test.*|.*Not.*]
* </code></pre>
*
* Since 3.0.0-M6, method filtering support is provided in excludes file. Example:
* Since 3.0.0-M6, method filtering support is provided in the exclusions file as well, example:
* <pre><code>
* foo.bar.SomeTest#test
* com.test.Test#testMethod
* pkg.SomeTest#testMethod
* </code></pre>
*
* @since 2.13
Expand Down