gpt4 book ai didi

java - 识别 Java Maven 项目中的测试目录

转载 作者:行者123 更新时间:2023-11-29 08:32:11 25 4
gpt4 key购买 nike

我没有在我的项目中遵循一般的 Maven 项目结构。这就是我的项目结构的样子 -

ProjectName
|- src
|- app
|- models
|- services
|- test
|- unit
|- services
|- integration
|- services

为了测试,我使用了 JunitMockito。我的 pom.xml 文件如下所示 -

<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>ProjectName</groupId>
<artifactId>ProjectName</artifactId>
<version>0.0.1-SNAPSHOT</version>
<dependencies>
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.mockito/mockito-all -->
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.10.19</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<sourceDirectory>src</sourceDirectory>
<resources>
<resource>
<directory>src</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>

我现在面临的问题是,当我运行测试时,它无法找到依赖包 junit 和 mockito。我知道这是因为我已将这些依赖项的范围声明为测试。

我想知道的是,我应该对我的 pom.xml 文件进行哪些更改,以便 Maven 可以识别我的测试目录?

最佳答案

Maven surefire plugin将在属性 project.build.testSourceDirectory 指向的目录中查找测试。

因此您可以将其添加到您的 pom.xml 中以更改此属性的值:

<build>
<testSourceDirectory>${project.basedir}/src/test</testSourceDirectory>
</build>

这将在测试阶段执行所有测试(单元和集成)。如果不想执行集成测试,可以将属性设置为 ${project.basedir}/src/test/unit

关于java - 识别 Java Maven 项目中的测试目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47001041/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com