项目
博客
文档
归档
资源链接
关于我
项目
博客
文档
归档
资源链接
关于我
07| 集成Spring Boot Test单元测试
2024-07-30
·
·
原创
·
·
本文共 55个字,预计阅读需要 1分钟。
依赖包 ```xml
org.springframework.boot
spring-boot-starter-test
``` 编写测试@RunWith(SpringRunner.class),@SpringBootTest(classes = UserApplication.class) ```Java @RunWith(SpringRunner.class) @SpringBootTest(classes = UserApplication.class) @Slf4j public class AddressTest { @Autowired private AddressService addressService; @Test public void testAddressDetail(){ AddressDO addressDO = addressService.detail(1L); log.info(addressDO.toString()); } } ```