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

springBoot_freemark配置

时间:2019-02-20 13:06:22      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:framework   div   span   import   dep   nbsp   domain   free   cat   

Spring Boot test

1、添加依赖

<!-- 引入 spring-boot-starter-test 集成单元测试-->

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-test</artifactId>

<version>1.5.6.RELEASE</version>

</dependency>

 

2、编写单元测试类 

package com.springboot.junit;

 

import java.util.List;

 

import org.junit.Test;

import org.junit.runner.RunWith;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.boot.test.context.SpringBootTest;

import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

 

import com.springboot.Application;

import com.springboot.domain.User;

import com.springboot.mapper.UserMapper;

 

@RunWith(SpringJUnit4ClassRunner.class)

@SpringBootTest(classes={Application.class})

public class UserTest {

@Autowired

private UserMapper userMapper;

 

@Test

public void testMapper() {

List<User> list = userMapper.findUserList();

System.out.println(list);

}

 

 

}

 

3、执行测试

 

springBoot_freemark配置

标签:framework   div   span   import   dep   nbsp   domain   free   cat   

原文地址:https://www.cnblogs.com/alexzhang92/p/10405650.html

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