我如何 运行 MRUnit 测试使用像 JUnit 测试一样的 mvn 测试命令

How do I run MRUnit tests using mvn test command like JUnit tests

我可以通过右键单击项目并单击 运行 作为 JUnit 测试来从 Eclipse 运行 MRUnit 测试,但是当我 运行 使用相同的 MRUnit 测试程序时命令行上的 mvn test 命令,我得到以下没有错误的输出:

...
Running com.bah.ossem.WordcountMRUnitTest
Configuring TestNG with:        
org.apache.maven.surefire.testng.conf.TestNG652Configuator@428aaed5
Tests run: 0, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.727 
...
[INFO] BUILD SUCCESS
...

此外,我可以 运行 使用 mvn test 命令进行正常的 JUnit 测试。

需要将其添加到我的 pom.xml 文件中:

<build>
  <pluginManagement>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.16</version>
      </plugin>
    </plugins>
  </pluginManagement>
</build>

答案来自:Maven not running Test