网创优客建站品牌官网
为成都网站建设公司企业提供高品质网站建设
热线:028-86922220
成都专业网站建设公司

定制建站费用3500元

符合中小企业对网站设计、功能常规化式的企业展示型网站建设

成都品牌网站建设

品牌网站建设费用6000元

本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...

成都商城网站建设

商城网站建设费用8000元

商城网站建设因基本功能的需求不同费用上面也有很大的差别...

成都微信网站建设

手机微信网站建站3000元

手机微信网站开发、微信官网、微信商城网站...

建站知识

当前位置:首页 > 建站知识

怎么在Springboot中使用Junit进行单体测试

这篇文章给大家介绍怎么在Spring boot中使用Junit进行单体测试,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。

为宝山等地区用户提供了全套网页设计制作服务,及宝山网站建设行业解决方案。主营业务为做网站、成都做网站、宝山网站设计,以传统方式定制建设网站,并提供域名空间备案等一条龙服务,秉承以专业、用心的态度为用户提供真诚的服务。我们深信只要达到每一位用户的要求,就会得到认可,从而选择与我们长期合作。这样,我们也可以走得更远!

pom设定

pom中需要添加spring-boot-starter-test

 
  org.springframework.boot
  spring-boot-starter-test
  test
 

确认依赖

使用Java进行Unit测试至少需要Junit之类的测试框架,另外spring boot相关的测试还应该有一些Mock相关的依赖,这个spring-boot-starter-test到底包含什么,可以使用maven dependency来进行确认一下。

使用命令:mvn dependency:tree

结果信息:

[INFO] --- maven-dependency-plugin:3.0.2:tree (default-cli) @ springbootdemo ---
[INFO] com.liumiaocn:springbootdemo:jar:0.0.1-SNAPSHOT
[INFO] +- org.springframework.boot:spring-boot-starter-web:jar:2.0.6.RELEASE:compile
[INFO] | +- org.springframework.boot:spring-boot-starter:jar:2.0.6.RELEASE:compile
[INFO] | | +- org.springframework.boot:spring-boot:jar:2.0.6.RELEASE:compile
[INFO] | | +- org.springframework.boot:spring-boot-autoconfigure:jar:2.0.6.RELEASE:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-logging:jar:2.0.6.RELEASE:compile
[INFO] | | | +- ch.qos.logback:logback-classic:jar:1.2.3:compile
[INFO] | | | | \- ch.qos.logback:logback-core:jar:1.2.3:compile
[INFO] | | | +- org.apache.logging.log4j:log4j-to-slf4j:jar:2.10.0:compile
[INFO] | | | | \- org.apache.logging.log4j:log4j-api:jar:2.10.0:compile
[INFO] | | | \- org.slf4j:jul-to-slf4j:jar:1.7.25:compile
[INFO] | | +- javax.annotation:javax.annotation-api:jar:1.3.2:compile
[INFO] | | \- org.yaml:snakeyaml:jar:1.19:runtime
[INFO] | +- org.springframework.boot:spring-boot-starter-json:jar:2.0.6.RELEASE:compile
[INFO] | | +- com.fasterxml.jackson.core:jackson-databind:jar:2.9.7:compile
[INFO] | | | +- com.fasterxml.jackson.core:jackson-annotations:jar:2.9.0:compile
[INFO] | | | \- com.fasterxml.jackson.core:jackson-core:jar:2.9.7:compile
[INFO] | | +- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.9.7:compile
[INFO] | | +- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.9.7:compile
[INFO] | | \- com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.9.7:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-tomcat:jar:2.0.6.RELEASE:compile
[INFO] | | +- org.apache.tomcat.embed:tomcat-embed-core:jar:8.5.34:compile
[INFO] | | +- org.apache.tomcat.embed:tomcat-embed-el:jar:8.5.34:compile
[INFO] | | \- org.apache.tomcat.embed:tomcat-embed-websocket:jar:8.5.34:compile
[INFO] | +- org.hibernate.validator:hibernate-validator:jar:6.0.13.Final:compile
[INFO] | | +- javax.validation:validation-api:jar:2.0.1.Final:compile
[INFO] | | +- org.jboss.logging:jboss-logging:jar:3.3.2.Final:compile
[INFO] | | \- com.fasterxml:classmate:jar:1.3.4:compile
[INFO] | +- org.springframework:spring-web:jar:5.0.10.RELEASE:compile
[INFO] | | \- org.springframework:spring-beans:jar:5.0.10.RELEASE:compile
[INFO] | \- org.springframework:spring-webmvc:jar:5.0.10.RELEASE:compile
[INFO] |   +- org.springframework:spring-aop:jar:5.0.10.RELEASE:compile
[INFO] |   +- org.springframework:spring-context:jar:5.0.10.RELEASE:compile
[INFO] |   \- org.springframework:spring-expression:jar:5.0.10.RELEASE:compile
[INFO] \- org.springframework.boot:spring-boot-starter-test:jar:2.0.6.RELEASE:test
[INFO]  +- org.springframework.boot:spring-boot-test:jar:2.0.6.RELEASE:test
[INFO]  +- org.springframework.boot:spring-boot-test-autoconfigure:jar:2.0.6.RELEASE:test
[INFO]  +- com.jayway.jsonpath:json-path:jar:2.4.0:test
[INFO]  | +- net.minidev:json-smart:jar:2.3:test
[INFO]  | | \- net.minidev:accessors-smart:jar:1.2:test
[INFO]  | |   \- org.ow2.asm:asm:jar:5.0.4:test
[INFO]  | \- org.slf4j:slf4j-api:jar:1.7.25:compile
[INFO]  +- junit:junit:jar:4.12:test
[INFO]  +- org.assertj:assertj-core:jar:3.9.1:test
[INFO]  +- org.mockito:mockito-core:jar:2.15.0:test
[INFO]  | +- net.bytebuddy:byte-buddy:jar:1.7.11:test
[INFO]  | +- net.bytebuddy:byte-buddy-agent:jar:1.7.11:test
[INFO]  | \- org.objenesis:objenesis:jar:2.6:test
[INFO]  +- org.hamcrest:hamcrest-core:jar:1.3:test
[INFO]  +- org.hamcrest:hamcrest-library:jar:1.3:test
[INFO]  +- org.skyscreamer:jsonassert:jar:1.5.0:test
[INFO]  | \- com.vaadin.external.google:android-json:jar:0.0.20131108.vaadin1:test
[INFO]  +- org.springframework:spring-core:jar:5.0.10.RELEASE:compile
[INFO]  | \- org.springframework:spring-jcl:jar:5.0.10.RELEASE:compile
[INFO]  +- org.springframework:spring-test:jar:5.0.10.RELEASE:test
[INFO]  \- org.xmlunit:xmlunit-core:jar:2.5.1:test

在org.springframework.boot:spring-boot-starter-test:jar:2.0.6.RELEASE:test下面我们看到了junit:junit:jar:4.12:test以及org.mockito:mockito-core:jar:2.15.0:test的信息,这是spring boot已经整理完毕的内容,我们只需要写TestCase即可。

创建测试目录

根据惯例创建测试目录如下:

liumiaocn:src liumiao$ ls
main test
liumiaocn:src liumiao$ find . -type d
.
./test
./test/java
./test/java/com
./test/java/com/liumiaocn
./test/java/com/liumiaocn/springbootdemo
./main
./main/resources
./main/java
./main/java/com
./main/java/com/liumiaocn
./main/java/com/liumiaocn/springbootdemo
liumiaocn:src liumiao$

创建测试用例

代码示例

liumiaocn:src liumiao$ cat ./test/java/com/liumiaocn/springbootdemo/SpringbootdemoApplicationTests.java 
package com.liumiaocn.springbootdemo;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class SpringbootdemoApplicationTests {
 @Test
 public void contextLoads() {
 }
}
liumiaocn:src liumiao$

代码说明

  • COC:根据惯例进行定义测试类的名称

  • SpringBootTest注解:SpringBootTest是1.4之后引入的一个注解,使得springboot的测试变得更加方便

  • RunWith注解:使用了此注解的情况下,JUnit会调用RunWith中所指定的类。不同的框架提供相应的Runner用于测试,比如Junit自己的JUnit4.class,在比如spring的SpringJUnit4ClassRunner或者SpringRunner,都可与之结合使用。

  • Test注解:Junit的常用注解之一,用于定义测试方法,不再赘述。

执行测试

命令: mvn test

部分执行内容如下:

[INFO] Results:
[INFO] 
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0

关于怎么在Spring boot中使用Junit进行单体测试就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。


网站题目:怎么在Springboot中使用Junit进行单体测试
标题URL:http://bjjierui.cn/article/gcioph.html

其他资讯