+ "<Content><![CDATA[this is a test]]></Content>"
+ "<MsgId>1234567890123456</MsgId>" + "</xml>";
@Test
public void testGetMsgText() throws DocumentException {
WxMsgTextEntity msgText = WxXmlUtil.getMsgText(WxXmlUtil.toXML(MSG_TEXT_XML));
assertBaseFieldsWithMsgId(msgText);
Assert.assertEquals("this is a test", msgText.getContent());
}