计算机系统应用教程网站

网站首页 > 技术文章 正文

springboot+junit测说明文档

btikc 2024-09-02 17:15:53 技术文章 12 ℃ 0 评论

1. 添加依赖

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

2. 在包路径test/java下创建一个java类

import com.tdd.Application;
import com.tdd.service.StuService;
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;

@RunWith(SpringRunner.class)
@SpringBootTest(classes = Application.class)
public class StuTest {

@Autowired
StuService stuService;

@Test
public void getAll() {
stuService.selectAll();
}
}

3. 如下图:

本文暂时没有评论,来添加一个吧(●'◡'●)

欢迎 发表评论:

最近发表
标签列表