}
@Test
public void testMarshallRetractCommand() {
String xmlCommand = "<retract fact-handle=\"0:234:345:456:567:789\"/>";
DeleteCommand command = (DeleteCommand) marshaller.fromXML(xmlCommand);
assertEquals("0:234:345:456:567:789:NON_TRAIT", command.getFactHandle().toExternalForm());
assertEquals("<retract fact-handle=\"0:234:345:456:567:789:NON_TRAIT\"/>", marshaller.toXML(command));
}