1、在【ruoyi-admin】的pom.xml下添加依赖
<!-- 单元测试-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
2、update一下maven(确认单元测试已经添加进来)
3、添加在src下创建test模块(与main同级)
4、进行测试
@SpringBootTest
@DisplayName("单元测试案例")
public class UnitTest {
@Autowired
private RuoYiConfig ruoYiConfig;
@Autowired
private ICmsCommentService cmsCommentService;
@DisplayName("单元测试1")
@Test
public void test1(){
System.out.println(ruoYiConfig);
}
}
实践:写自己的业务方法
操作idea单元测试查看指定方法:
** 参考了这篇文章:https://lionli.blog.csdn.net/article/details/127576604**
以上是简单操作,复杂的单元测试操作请看上面这篇文章
版权归原作者 TinpeaV 所有, 如有侵权,请联系我们删除。