* Tear down the fixture, erase messages and disconnect from xmlBlaster.
*/
protected void tearDown() {
if (con1 != null) {
try {
EraseKey ek = new EraseKey(glob, "command-navigation");
EraseQos eq = new EraseQos(glob);
con1.erase(ek.toXml(), eq.toXml());
ek = new EraseKey(glob, "command-radar-1");
eq = new EraseQos(glob);
con1.erase(ek.toXml(), eq.toXml());
ek = new EraseKey(glob, "dummyTestSubXPathMany");
eq = new EraseQos(glob);
con1.erase(ek.toXml(), eq.toXml());
}
catch (XmlBlasterException e) {
fail("doPublish failed: " + e.toString());
}
con1.disconnect(null);