java使用Test测试接口类


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(); } } }

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM