springboot整合Junit

1 导入依赖——pom.xml

<dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <scope>test</scope>
</dependency>

2 重新加载maven项目:reload maven project

3 测试类上添加@RunWith注解,测试方法上添加@Test注解

@RunWith(SpringRunner.class) @SpringBootTest class SpringbootCustomerApplicationTests {
@Test
void contextLoads() {
System.out.println(“test2”);
} }

你可能感兴趣的:(java)