Springboot整合junit过程解析

对maven项目的pom.xml进行配置


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

    
      org.junit.vintage
      junit-vintage-engine
    
  

测试类如图所示

Springboot整合junit过程解析_第1张图片

junit5可直接扫描测试的主启动类 也不需要加@runwith注解 只需要加@SpringBootTest 注解 也不需要指定主启动类的class文件

Springboot整合junit过程解析_第2张图片

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

你可能感兴趣的:(Springboot整合junit过程解析)