springboot 整合 Junit

  • Post author:
  • Post category:其他




springboot 整合 Junit


实现步骤:


1 搭建SpringBoot工程

2 引入starter-test起步依赖

3 编写测试类

4 添加测试相关注解

@RunWith(SpringRunner.class)

@SpringBootTest(classes =启动类.class)

5 编写测试方法

pom里需要的坐标

 <!-- 不要这个就不能运行
     这是本项目的坐标  -->
    <groupId>com.itheima</groupId>
    <artifactId>springboot-junit</artifactId>
    <version>1.0-SNAPSHOT</version>
    <name>springboot-junit</name>
    <description>Demo project for Spring Boot</description>

    <!--springboot工程需要继承的父工程-->
    <parent>
        <groupId>org.springframework.boot



版权声明:本文为weixin_50622904原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。