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

SpringBoot之Junit单元测试

时间:2019-02-17 00:30:39      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:code   group   div   als   loser   ica   contex   test   col   

增加maven依赖

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

 

HelloService.java

package com.zns.service;

import org.springframework.stereotype.Service;

@Service
public class HelloService {
       public String getName(){
              return"hello";
       }
}

 

HelloServiceTest.java

package com.zns.test;

import javax.annotation.Resource;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import com.zns.MyApplication;
import com.zns.service.HelloService;

@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest(classes = MyApplication.class)
public class HelloServiceTest {

    @Resource
    private HelloService helloService;

    @Test
    public void testGetName() {
        Assert.assertEquals("hello", helloService.getName());
    }
}

 

这时候就可以进行测试了,右键—RunAs – Junit Test。

SpringBoot之Junit单元测试

标签:code   group   div   als   loser   ica   contex   test   col   

原文地址:https://www.cnblogs.com/zengnansheng/p/10389795.html

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