spring+junit单元测试
Posted 永远相信美好的事情即将发生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring+junit单元测试相关的知识,希望对你有一定的参考价值。
<1>读取文件:
配置文件在classes下:locations = {"classpath*:/spring/applicationContext.xml"}
配置文件在web-inf下:locations = {"file:web/WEB-INF/applicationContext.xml"}
<2>实例类:
package com.test;
import java.util.List;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import com.entity.User;
import com.service.impl.UserService;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {"file:web/WEB-INF/applicationContext.xml"})
public class PageTest {
@Autowired
private UserService userService;
@Test
public void testPage(){
// add your test code
}
}
}
以上是关于spring+junit单元测试的主要内容,如果未能解决你的问题,请参考以下文章