[ 
https://jira.codehaus.org/browse/SUREFIRE-862?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=362755#comment-362755
 ] 

Elad Tabak commented on SUREFIRE-862:
-------------------------------------

@Tibor
I'm using TestNG version 6.8.5, surefire 2.13.
It seems the resolution of what are the tests to run is somewhat strange. I'm 
trying to pin point the exact issue, but I suspect it's related to hierarchy of 
tests.
For example, for a base class SlowTest annotated with {code}@Test(groups = 
{"slow"}){code}, I would expect that all sub classes that inherits from 
SlowTest will be skipped by surefire, and caught be failsafe. However, this is 
not the case, and I'm trying to figure out the exact combination of @Test on 
the super/sub/method with/without group that will work.

> excludedGroups property does not work with JUnit
> ------------------------------------------------
>
>                 Key: SUREFIRE-862
>                 URL: https://jira.codehaus.org/browse/SUREFIRE-862
>             Project: Maven Surefire
>          Issue Type: Bug
>          Components: Maven Surefire Plugin
>    Affects Versions: 2.12
>         Environment: Windows, Maven 3.0.3
>            Reporter: Rene Grohmann
>            Assignee: Kristian Rosenvold
>             Fix For: 2.12.3
>
>
> If i use the groups property in my maven configuration everything works how 
> expected. The plugin only selects the tests with the specific category. On 
> the other Hand, if i use the excludedGroups property the plugin could not 
> find any tests to run.
> <plugin>
>   <artifactId>maven-surefire-plugin</artifactId>
>   <version>2.11</version>
>   <dependencies>
>     <dependency>
>       <groupId>org.apache.maven.surefire</groupId>
>         <artifactId>surefire-junit47</artifactId>
>         <version>2.12</version>
>     </dependency>
>   </dependencies>
>   <configuration>                                                     
>     <excludedGroups>de.test.junit.categories.IntegrationTest</excludedGroups>
>   </configuration>
> </plugin>



--
This message was sent by Atlassian JIRA
(v6.1.6#6162)

Reply via email to