首页 > 其他 > 详细

简单使用Junit5测试单元

时间:2021-03-17 09:52:16      阅读:31      评论:0      收藏:0      [点我收藏+]

简单使用Junit5测试单元

1.新建一个测试类

import com.xzh.test.mapper.TeacherMapper;
import com.xzh.test.pojo.Teacher;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;


@SpringBootTest//spring环境注解
public class Junit5Test {

    @Autowired
    private TeacherMapper teacherMapper;
    
    @Test
    public void test(){
        Teacher teacher = new Teacher();
        teacher.settName("name");
        teacher.settId("id");
        teacherMapper.insertTeacher(teacher);
        System.out.println("1");
    }
}

加上@SpringBootTest注解,才能在spring环境下测试,@Autowired自动注入才会生效

@Test使用的是Junit5的包中的注解(org.junit.jupiter.api.Test)

测试之后成功在数据库中插入数据

2.注意点

java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test

出现这种错误,有可能是因为测试类的启动类和正常的启动类不在同一个包中

详细情况看官网https://junit.org/junit5/docs/current/user-guide/#writing-tests-annotations

简单使用Junit5测试单元

原文:https://www.cnblogs.com/xzh-hash/p/14546975.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!