xml 使用JUnit,JUnitParams和Mockito进行单元测试的基本maven设置。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml 使用JUnit,JUnitParams和Mockito进行单元测试的基本maven设置。相关的知识,希望对你有一定的参考价值。
<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.mariodiana</groupId>
<artifactId>Scratchpad</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<url>http://www.mariodiana.com</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<!-- Unit testing: JUnit, JUnitParams, & Mockito. -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
</dependency>
<dependency>
<groupId>pl.pragmatists</groupId>
<artifactId>JUnitParams</artifactId>
<version>1.0.2</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<compilerArgument>-Xlint:unchecked</compilerArgument>
</configuration>
</plugin>
</plugins>
</build>
</project>
以上是关于xml 使用JUnit,JUnitParams和Mockito进行单元测试的基本maven设置。的主要内容,如果未能解决你的问题,请参考以下文章
Ant、Ivy 和 JUnit 找不到类 - build.xml 中的错误?
如何在 JUnit XML 报告中配置 name 和 classname 属性
当 pom.xml 中存在 TestContainers 依赖项时,未检测到 JUnit 5 测试
Golang template和junit xml report转html工具
如何解析JUnit结果xml文件并在java代码中获取testcase?
Junit_Ant使用Eclipse自带的Junit和Ant,生成测试报告