+ "<Label><![CDATA[位置信息]]></Label>"
+ "<MsgId>1234567890123456</MsgId>" + "</xml> ";
@Test
public void testGetMsgLoc() throws DocumentException {
WxMsgLocEntity msgLoc = WxXmlUtil.getMsgLoc(WxXmlUtil.toXML(MSG_LOC_XML));
assertBaseFieldsWithMsgId(msgLoc);
Assert.assertEquals(Double.valueOf(23.134521d), msgLoc.getLocationX());
Assert.assertEquals(Double.valueOf(113.358803d), msgLoc.getLocationY());
Assert.assertEquals(Double.valueOf(20), msgLoc.getScale());
Assert.assertEquals("位置信息", msgLoc.getLabel());
}