所以我有一个大型项目,我们现在正试图将测试集成到整个项目中(我知道)。但是当我跑了
mvn clean install
在测试插件上,我收到消息
All Tests Passed!
但它显然没有运行测试,因为我的一个测试写入失败。插件项目的结构是:
->src/${filepath} */ My tests are here
->src/${filepath}/folderA
->src/${filepath}/folder
etc...
我有一个高级pom文件,用于编译所有依赖项(成功)。我的结构在测试插件中是错误的吗?
<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>
<version>1.0.0.qualifier</version>
<artifactId>com.exeeng.test</artifactId>
<packaging>eclipse-test-plugin</packaging>
<name>${name}</name>
<parent>
<version>${parent-version}</version>
<groupId>${parent-grou}</groupId>
<artifactId>parent</artifactId>
</parent>
<properties>
<tycho-version>0.19.0</tycho-version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>${tycho-version}</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho-version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.tycho</groupId>
<artifactId>maven-osgi-packaging-plugin</artifactId>
</plugin>
</plugins>
答案 0 :(得分:2)
根据Maven规范,maven项目在src / test / java中测试,其资源在src / test / resources中(默认)。你有这种结构吗?
我想补充说,maven Junit测试是由surefire-plugin运行的,它希望将其作为测试的默认目录结构。如果您需要配置此check this