其他分享
首页 > 其他分享> > SpringBoot 单元测试

SpringBoot 单元测试

作者:互联网

一、引入依赖

 

 

<dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-test</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>

 

标签:4.11,SpringBoot,单元测试,boot,test,junit
来源: https://www.cnblogs.com/mingforyou/p/14648332.html