jCas.setDocumentText("Let's meet to talk about the CPE. The meeting is over at Yorktown 01-144");
new Meeting(jCas, 0, 33).addToIndexes();
engine.process(jCas);
UimaAcronym uimaAcronym = JCasUtil.selectByIndex(jCas, UimaAcronym.class, 0);
assertNotNull(uimaAcronym);
assertEquals("CPE", uimaAcronym.getCoveredText());
assertEquals("Collection Processing Engine", uimaAcronym.getExpandedForm());
UimaMeeting uimaMeeting = JCasUtil.selectByIndex(jCas, UimaMeeting.class, 0);
assertNotNull(uimaMeeting);
assertEquals("Let's meet to talk about the CPE.", uimaMeeting.getCoveredText());
}