Is there a JUnit TestRunner for running groups of tests?

前端 未结 9 753
既然无缘
既然无缘 2021-02-05 13:42

I am currently using JUnit 4 and have a need to divide my tests into groups that can be run selectively in any combination. I know TestNG has a feature to annotate tests to assi

相关标签:
9条回答
  • 2021-02-05 14:05

    You can create suites, although that puts all the configuration in the suite, and not in annotations.

    0 讨论(0)
  • 2021-02-05 14:13

    my advice is simply ditch JUnit and use TestNG. Once you get used to TestNG, Junit looks like Stone Age.

    0 讨论(0)
  • 2021-02-05 14:15

    No, there is no similar concept to TestNG groups, unfortunately. It was planned for JUnit4, but for some unclear reason, it was dropped from the planning.

    0 讨论(0)
  • 2021-02-05 14:16

    Check out Spring's SpringJUnit4ClassRunner. I've used it to optionally run tests based on a System property, using the IfProfileValue annotation.

    This:

    @IfProfileValue(name="test-groups", values={"unit-tests", "integration-tests"})
      public void testWhichRunsForUnitOrIntegrationTestGroups() {
          // ...
     }
    

    Will run if the System property 'test-groups' is set to either 'unit-tests' or 'integration-tests'.

    Update: JUnitExt has @Category and @Prerequisite annotations and looks like it should do what you need. However, I've never used it myself, so I can't vouch for it.

    0 讨论(0)
  • 2021-02-05 14:17

    TestNG has my vote. It's annotation based, can run as Groups, single Tests, etc, can be linked into Maven, and can run all JUnit tests as part of it's test runs.

    I highly recommend it over JUnit.

    0 讨论(0)
  • 2021-02-05 14:22

    First, you are addressing two problems - unit tests (often in the same package as the unit under test) and integration tests. I usually keep my integration tests in a separate package, something like com.example.project.tests. In eclipse, my projects look like:

    project/
      src/
        com.example.project/
      tsrc/
        com.example.project/
        com.example.project.tests/
    

    Right-clicking on a package and selecting 'run' runs the tests in the package; doing the same on the source folder runs all the tests.

    You can acheive a similar effect, although you expressed a disinterest in it, by using the Suite runner. However, this violates DRY - you have to keep copies of the test names up to date in the suite classes. However, you can easily put the same test in multiple suites.

    @RunWith(Suite.class)
    @Suite.SuiteClasses( { 
        TestAlpha.class, 
        TestBeta.class })
    public class GreekLetterUnitTests {
    }
    

    Of course, I really should be keeping these things automated. A good method for doing that is to use the Ant task.

    <target name="tests.unit">
      <junit>
        <batchtest>
          <fileset dir="tsrc">
            <include name="**/Test*.java"/>
            <exclude name="**/tests/*.java"/>
          </fileset>
        </batchtest>
      </junit>
    </target>
    <target name="tests.integration">
      <junit>
        <batchtest>
          <fileset dir="tsrc">
            <include name="**/tests/Test*.java"/>
          </fileset>
        </batchtest>
      </junit>
    </target>
    
    0 讨论(0)
提交回复
热议问题