spring boot进行Test测试

2020-10-17  本文已影响0人  没有功底的学生

spring boot中集成了junit测试,无需自行安装junit。

在pom.xml中添加spring中的junit,若之前添加过junit会进行默认会采用spring boot中的junit

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-test</artifactId>
    <scope>test</scope>
</dependency>

在测试类添加@SpringBootTest注解,测试方法添加@Test注解。

需要注意!!!!如果有添加junit,请务必选择org.junit.jupiter.api.Test的包。否则无法spring装载的bean

import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;

@SpringBootTest
public class Test1 {

   @Test
   public void test(){
      System.out.println("test");
   }
}
上一篇下一篇

猜你喜欢

热点阅读