*/
public class XStreamMarshallerTest extends JmsTestSupport {
Marshaller marshaller = new XStreamMarshaller();
public void testMarshall() throws Exception {
Requestor requestor = createRequestor(getDestinationName());
LingoInvocation invocation = new LingoInvocation("foo", new Class[0], new Object[0], new MethodMetadata(false));
Message message = marshaller.createRequestMessage(requestor, invocation);
assertTrue("Should have created a text message: " + message, message instanceof TextMessage);