SpringBoot进行单元测试

需要的依赖

<dependency>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-test</artifactId>
	<scope>test</scope>
	<exclusions>
		<exclusion>
			<groupId>org.junit.vintage</groupId>
			<artifactId>junit-vintage-engine</artifactId>
		</exclusion>
	</exclusions>
</dependency>
<dependency>
	<groupId>junit</groupId>
	<artifactId>junit</artifactId>
	<scope>test</scope>
</dependency>			

创建测试类

@RunWith(SpringRunner.class)
@SpringBootTest(classes = BookApplication.class)
public class MyTest{
      @Test
      public void test(){}

}

相关文章:

猜你喜欢
  • 2022-02-01
  • 2022-01-05
  • 2021-11-26
  • 2021-05-14
  • 2021-11-25
  • 2021-06-28
相关资源
相似解决方案