在SpringBoot中使用Junit测试
2020-12-13 02:25
标签:public pid text use cto framework 绿色 ati art 一:加入依赖 二: 假设我们要对Mapper做测试,在将鼠标放在类名上使用快捷键 三:添加SpringBoot的注释: 四:具体使用就和junit一样的了,运行时,点右边的绿色小三角就行 在SpringBoot中使用Junit测试 标签:public pid text use cto framework 绿色 ati art 原文地址:https://www.cnblogs.com/flyuz/p/11038130.html1 dependency>
2 groupId>junitgroupId>
3 artifactId>junitartifactId>
4 version>4.12version>
5 scope>testscope>
6 dependency>
ALT + ENTER,选择Create Test,或者 在类中鼠标右键,选Go To都行
OK
然后会发现,生成的测试类在 src/test
目录下,测试类和源代码的包名 是一致的。 1 import org.junit.Test;
2 import org.junit.runner.RunWith;
3 import org.springframework.beans.factory.annotation.Autowired;
4 import org.springframework.boot.test.context.SpringBootTest;
5 import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
6
7 import static org.junit.Assert.*;
8 @RunWith(SpringJUnit4ClassRunner.class)
9 @SpringBootTest
10 public class UserMapperTest {
11 @Autowired
12 private UserMapper userMapper;
13 @Test
14 public void test(){
15
16 }
17 }