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");
}
}
网友评论