@RunWith(SpringJUnit4ClassRunner.class) //使用junit4进行测试
@ContextConfiguration
(locations={
"file:E:/DevelopedTools/green software/MyEclipse10/workSpace/Workspaces/Workspaces10/fcruise/WebRoot/WEB-INF/webApplicationContext.xml"
}) //加载配置文件
public class TravelDaoTest extends TestCase{
@Autowired
private ApplicationContext ac;上下文
@Autowired
private TravelDao t;
@Test
public void testTravelList(){
PageModel p=new PageModel();
p.setSearchKey("7");
List<Map<String,Object>> list=t.travelList(p);
}
}
@ContextConfiguration
(locations={
"file:E:/DevelopedTools/green software/MyEclipse10/workSpace/Workspaces/Workspaces10/fcruise/WebRoot/WEB-INF/webApplicationContext.xml"
}) //加载配置文件
public class TravelDaoTest extends TestCase{
@Autowired
private ApplicationContext ac;上下文
@Autowired
private TravelDao t;
@Test
public void testTravelList(){
PageModel p=new PageModel();
p.setSearchKey("7");
List<Map<String,Object>> list=t.travelList(p);
}
}