springBoot 中进行单元测试

在springboot项目中进行单元测试,很简单,看下面的步骤
1、在maven的pom.xml 文件中添加 测试的相关依赖

        <!-- SpringBoot 整合测试的包 -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>

2、新建一个测试类–MyTest.java,单元测试主要用到 @RunWith 和
@SpringBootTest 两个注解,将这两个注解添加到测试类上,在类的方法上添加@Test注解,即可进行单元测试了,代码如下:

@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest
public class MyTest {
	
	@Test
	public void set(){
		System.out.println("测试+++++");
	}
	
}

运行后,如下:
springBoot 中进行单元测试_第1张图片

你可能感兴趣的:(springBoot,中进行单元测试,spring,boot,java,spring,maven)