美文网首页
spring boot进行Test测试

spring boot进行Test测试

作者: 没有功底的学生 | 来源:发表于2020-10-17 00:49 被阅读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");
       }
    }
    

    相关文章

      网友评论

          本文标题:spring boot进行Test测试

          本文链接:https://www.haomeiwen.com/subject/nmcxmktx.html