美文网首页
SpringBoot 整合Junit(单元测试)

SpringBoot 整合Junit(单元测试)

作者: 索性流年 | 来源:发表于2020-05-14 17:45 被阅读0次

    pom添加依赖

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

    在src/test/java下建立测试类

    
    @RunWith(SpringRunner.class)//设置启动器
    @SpringBootTest(classes={Application.class})//指定启动类
    //@SpringApplicationConfiguration(classes=Application.class)//1.4.0之前版本
    public class ApplicationTests{
      @Test
      public void test1(){
        //..测试内容
      }
    
      @Test
      public void testAsser(){
          //JUnit4.1.2后Assert过时,TestCase.assertEquals成为替代
          //(期望结果,条件语句)
          //("提示",true,条件语句)
          TestCase.assertEquals(1, 1);
      }
    
      @Before
      public testBefore(){
          //测试前执行
      }
      
      @After
      public testAfter(){
          //测试结束后
      }
    }

    相关文章

      网友评论

          本文标题:SpringBoot 整合Junit(单元测试)

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