this.dbPool.update("INSERT INTO TEST_POLL (colKey) VALUES ('2.0')");
this.processor = createTest(new Info(prefs), this.updateMap);
I_ChangeDetector changeDetector = processor.getChangeDetector();
changeDetector.checkAgain(null);
sleep(500);
assertEquals("Number of message is wrong", 1, this.updateMap.size());
String xml = (String)this.updateMap.get("db.change.event.TEST_POLL");
assertXpathEvaluatesTo("UPDATE", "/myRootTag/desc/command/text()", xml);
assertXpathEvaluatesTo("2", "/myRootTag/row[@num='0']/col[@name='COLKEY']/text()", xml);