码迷,mamicode.com
首页 > 其他好文 > 详细

Junit接口测试(3)

时间:2015-09-08 12:29:53      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:

//将返回值的data部分序列化,取出某个参数进行assert

技术分享
 1 @Test
 2     public void loginTest_diffDeviceToken(){
 3         String account = "xxxx";
 4         String password = "123456";
 5         Map<String,Object> m = new HashMap<String,Object>();
 6         m.put("account", account);
 7         m.put("password",password);
 8         String res = HTTPUtil.postJson("http://192.168.1.100/xxx.htm",JSON.toJSONString(m));
 9         ResVo resVo = JSON.parseObject(res,ResVo.class);
10         System.out.println(JSON.toJSONString(m));
11         System.out.println(res);
12         org.junit.Assert.assertSame(0, resVo.getResult());
13         Map<String,String> dataMap = JSON.parseObject(resVo.getData(),Map.class);
14         org.junit.Assert.assertSame(account, dataMap.get("account"));
15     }
View Code

 

Junit接口测试(3)

标签:

原文地址:http://www.cnblogs.com/cvv54/p/4791135.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!