package com.lou.springboot;
import com.lou.springboot.service.HelloService;
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
public class SpringBootTestDemo2 {
@Autowired //自动装配get和set方法
private HelloService helloService;
@Test//这是一个测试方法
public void sayHelloTest() {
System.out.println(helloService.sayHello("十三"));
}
}
Spring-boot-test
最新推荐文章于 2024-06-28 08:00:00 发布
本文展示了如何在SpringBoot项目中进行单元测试,利用SpringRunner和@SpringBootTest注解启动测试环境,通过@Autowired注入HelloService,并使用@Test注解创建测试方法sayHelloTest,验证sayHello方法的功能。
摘要由CSDN通过智能技术生成