Run tests from inner classes via Maven

前端 未结 2 1735
感情败类
感情败类 2021-02-19 23:25

I have following tests structure:

public class WorkerServiceTest {

    public class RaiseErrorTest extends AbstractDbUnitTest{
        @Test
        public void         


        
相关标签:
2条回答
  • 2021-02-19 23:57

    Yes, this is possible using the new (well, it's not new anymore) Enclosed runner (since JUnit 4.5) that runs all static inner classes of an outer class.

    To use it, just annotate the outer class with @RunWith(Enclosed.class) and make the inner classes static.

    @RunWith(Enclosed.class)
    public class WorkerServiceTest {
    
        public static class RaiseErrorTest extends AbstractDbUnitTest{
            @Test
            public void testSomething(){
            } 
    
            ...
        }
    
        ...
    }
    

    And mvn test will run them.

    0 讨论(0)
  • 2021-02-20 00:13

    I explain (a little more) the solution that I found...

    Maven (AFAIK) uses by default the plugin "maven-surefire-plugin" to run any tests defined at your maven project. According to the documentation of this plugin, by default, it excludes tests that are enclosed at inner static classes (or at least it was with version that i'm using - 2.18.1).

    So what i did was to put a empty exclude rule; resulting with a pom's build section like this:

    <build>
      <plugins>
      ...
      <!-- ~~~~~~~~~~ SUREFIRE -->
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-surefire-plugin</artifactId>
          <version>2.18.1</version>
          <configuration>
            <excludes>
              <exclude></exclude>
            </excludes>
          </configuration>
        </plugin>
        ...
      </plugins>
    </build>
    
    0 讨论(0)
提交回复
热议问题