若依框架如何进⾏单元测试
可能刚接触这个框架或者对Springboot不太熟悉的朋友,可能不知道如何在这个框架下进⾏单元测试,下⾯教⼤家如何写⼀个简单的单元测试案例,如果你已经会了,下⾯的内容可以直接忽略。
⽬录
1、导⼊单元测试依赖包
在ruoyi-admin模块中的l中添加以下依赖配置
springboot框架的作用<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>2.6.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
2、新建单元测试类
import com.ruoyi.RuoYiApplication;
import ity.SysUser;
import com.ruoyi.system.service.ISysUserService;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.st.context.SpringBootTest;
import st.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest(classes = RuoYiApplication.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
public class JavaTest {
@Autowired
private ISysUserService sysUserService;
@Test
public void test() {
SysUser sysUser = sysUserService.selectUserById(1L);
System.out.println(sysUser);
}
}
3、运⾏测试类结果
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论