AnswersClient client = new AnswersClient();
@Test
public void test() throws Exception {
AttributedURIType logicalAddress = new AttributedURIType();
logicalAddress.setValue("careUnit1");
client.receive(logicalAddress);
ITable result = getConnection().createQueryTable("ANSWER", "SELECT * FROM ANSWER WHERE CARE_UNIT = 'careUnit1'");
Assert.assertEquals(1, result.getRowCount());
Assert.assertNotNull(result.getValue(0, "MESSAGE"));