<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
一旦依赖了spring-boot-starter-test,下面这些类库将被一同依赖进去:
JUnit:java测试事实上的标准,默认依赖版本是4.12
@RunWith(SpringRunner.class) @SpringBootTest public class SpringBootApplicationTests { @Autowired private UserService userService; @Test public void testAddUser() { } }
本文转载自: https://blog.csdn.net/weixin_45434902/article/details/124267185
版权归原作者 alibaba_张无忌 所有, 如有侵权,请联系我们删除。
版权归原作者 alibaba_张无忌 所有, 如有侵权,请联系我们删除。