springboot如何做单元测试呢?

来源:13-5 dao的迁移下

wicked代码

2018-12-24

basetest怎么写。

写回答

1回答

翔仔

2018-12-24

同学好,视频里面讲了呢,basetest不用写了

直接使用

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

	@Test
	public void contextLoads() {
	}

}

然后类里面按下面这样写就好了

package com.imooc.o2o.dao;

import static org.junit.Assert.assertEquals;

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.SpringRunner;

import com.imooc.o2o.entity.Area;

@RunWith(SpringRunner.class)
@SpringBootTest
public class AreaDaoTest{
	@Autowired
	private AreaDao areaDao;
	
	@Test
	public void testQueryArea(){
		List<Area> areaList = areaDao.queryArea();
		assertEquals(2, areaList.size());
	}
}


1
1
wicked代码
非常感谢!
2018-12-24
共1条回复

Java双版本(SSM到SpringBoot)校园商铺全栈开发

SSM商铺V1.0,解决毕设痛点;SpringBoot商铺V2.0,满足工作刚需

5113 学习 · 8144 问题

查看课程

相似问题