07| 集成Spring Boot Test单元测试 小滴课堂讲师 2024年07月30日 预计阅读 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()); } } ```
评论区