package com.jy.demo.web;
import java.util.Map;
import org.junit.BeforeClass;
import org.junit.Test;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import com.jy.modules.client.service.MainDataService;
public class InterfaceTest {
private static MainDataService mainDataService;
@BeforeClass
public static void setUpBeforeClass() throws Exception {
ClassPathXmlApplicationContext ct=new ClassPathXmlApplicationContext("spring-base.xml");//取到系统核心配置文件
mainDataService=ct.getBean("com.jy.modules.client.service.MainDataService",MainDataService.class);//从bean工程获取接口bean
}
@Test
//调用接口
public void testInterface2001(){
Map<String, String> map = null;
try {
map = mainDataService.searchCustInfoByCr("CR20150500000153");
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}