码迷,mamicode.com
首页 > 编程语言 > 详细

SpringBoot单元测试demo

时间:2020-07-03 12:37:32      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:pre   单元   depend   alt   测试   image   dep   contex   点击   

 

 

引入maven

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

 

单元测试类

DemoApplicationTests.java

package com.example.demo;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;


@RunWith(SpringRunner.class)
@SpringBootTest
public class DemoApplicationTests {

    @Test
    public void test(){
        System.out.println("单元测试------");
    }
}

 

点击下方按钮启动

技术图片

 

 



SpringBoot单元测试demo

标签:pre   单元   depend   alt   测试   image   dep   contex   点击   

原文地址:https://www.cnblogs.com/pxblog/p/13229421.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!