Maven没有在多模块项目中通过eclipse运行测试

时间:2018-04-02 08:29:59

标签: java maven

我有一个简单的多模块maven项目结构如下:

main-project : 
   -test-child-one : 
   -test-child-three : 
   -test-child-two : 

当我从父项目内部通过eclipse运行mvn test时,不会运行任何测试。

我也试过在其中一个子项目中运行mvn test - test-child-one,但是没有运行测试。

它总是显示 -

Results :
Tests run: 0, Failures: 0, Errors: 0, Skipped: 0

父母和孩子的pom如下:

父pom:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.atul.multimodule</groupId>
  <artifactId>main-project</artifactId>
  <packaging>pom</packaging>
  <version>1.0-SNAPSHOT</version>
  <name>main-project</name>
  <url>http://maven.apache.org</url>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <modules>
    <module>test-child-one</module>
    <module>test-child-two</module>
    <module>test-child-three</module>
  </modules>
</project>

儿童pom:

<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>com.atul.multimodule</groupId>
    <artifactId>main-project</artifactId>
    <version>1.0-SNAPSHOT</version>
  </parent>
  <groupId>com.atul.multimodule</groupId>
  <artifactId>test-child-one</artifactId>
  <version>1.0-SNAPSHOT</version>
  <name>test-child-one</name>
  <url>http://maven.apache.org</url>

</project>

这里有什么我想念的吗?

请帮忙。

1 个答案:

答案 0 :(得分:2)

约定惯例范式与Maven相关很重要,这意味着您具有默认目录布局,当然还有命名模式。 这意味着您必须根据schemas相应地命名测试。

要定义单元测试,您应该将它们命名为:

  • ** /试验*的.java
  • ** / * Test.java
  • ** / * Tests.java
  • ** / * TestCase.java