Spring-boot 单元测试
发布于: 2020 年 09 月 17 日
1、添加依赖,junit 跟 spring的test依赖需要添加
<dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>RELEASE</version></dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <version>2.1.2.RELEASE</version></dependency>
2.添加resource 文件夹,并在下面添加配置文件,优先走这个配置文件
3.代码,其中用到的是junit这个测试框架。
package com.lmm.base.service;import com.lmm.base.model.SActivity;import lombok.extern.slf4j.Slf4j;import org.junit.Test;import org.junit.runner.RunWith;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.boot.test.context.SpringBootTest;import org.springframework.test.context.junit4.SpringRunner;@SpringBootTest(webEnvironment= SpringBootTest.WebEnvironment.NONE)@RunWith(SpringRunner.class)@EnableFeignClients(basePackages = {"xyz.staffjoy.company.client"})@Slf4jpublic class ActivityServiceTest { @Autowired private ActivityService activityService; @Test public void getCurrentActivity() { SActivity activity = activityService.getCurrentActivity(); System.out.print(activity); }}
划线
评论
复制
发布于: 2020 年 09 月 17 日阅读数: 50
陈靓-哲露
关注
还未添加个人签名 2018.04.12 加入
还未添加个人简介
评论