public void testParse() {
String expectedResult = loadExpectedResult("/TestData/Templates/COCD_TP146229GB01_AH_01.xml", true);
TextSection template = new TextSection();
template.parse(expectedResult, parentNamespaces);
List<Section2> s2List = template.getSection2();
Section2 s2 = s2List.get(0);
System.out.println("TEXT = '" + s2.getText() + "'");
assertEquals("<content ID=\"a4\" xmlns=\"urn:hl7-org:v3\">Anticipatory medicine box is issued and kept in refrigerator at patient home.</content>", s2.getText().trim());
}