EJB的JUnit测试

import java.util.HashMap;
import java.util.Map;
import java.util.Properties;

import javax.naming.Context;
import javax.naming.InitialContext;

import junit.framework.TestCase;

import com.papcic.epcis.paris.faculativetreatymanage.biz.amesb.FacTreatyRuleMatchEjbService;
import com.papcic.epcis.paris.faculativetreatymanage.biz.amesb.FacTreatyRuleMatchEjbServiceHome;

public class TestEJB extends TestCase {
private Context ctx;
FacTreatyRuleMatchEjbService service;

protected void setUp() throws Exception {
if (ctx == null) {
Properties prop = new Properties();
prop.put(Context.INITIAL_CONTEXT_FACTORY,
"weblogic.jndi.WLInitialContextFactory");
prop.put(Context.PROVIDER_URL, "t3://Iqsz-d9006:7001");
// 用虚拟用户调用
prop.put(Context.SECURITY_PRINCIPAL, "weblogic");
prop.put(Context.SECURITY_CREDENTIALS, "weblogic");
ctx = new InitialContext(prop);
}
FacTreatyRuleMatchEjbServiceHome applyEjbHome = (FacTreatyRuleMatchEjbServiceHome) ctx
.lookup("ejb/epcis_paris/treatyRuleMatchService");
service = applyEjbHome.create();
}

public void testname() throws Exception {
Map mapPararm=new HashMap();
mapPararm.put("applyPolicyNo","51209001900000231174");
mapPararm.put("shipAge","2");
mapPararm.put("planClassCode","SB");
mapPararm.put("insuranceBeginTime","20131030");
mapPararm.put("planCode","B01");
mapPararm.put("cargoItem","2508");
mapPararm.put("brokerName","五矿保险经纪(北京)有限责任公司");
mapPararm.put("USDAmount","55220.0");
mapPararm.put("brokerCode","00005226");
mapPararm.put("nationCode","140");
mapPararm.put("USDPremium","6626.4");
mapPararm.put("iacsLevel","N");
mapPararm.put("rate","0.12");
Map map=service.matchFacTreatyRule(mapPararm);
System.out.println(map);
}
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值