return "org/mule/test/integration/client/mule-remote-dispatcher-agent.xml";
}
public void testNonEmptyProperties() throws Exception
{
RemoteDispatcherAgent agent = (RemoteDispatcherAgent) muleContext.getRegistry().lookupAgent("remote-dispatcher-agent");
assertNotNull(agent.getEndpoint());
assertEquals("test://localhost:50608",agent.getEndpoint().getEndpointURI().getUri().toString());
assertNotNull(agent.getWireFormat());
assertTrue(agent.getWireFormat() instanceof SerializedMuleMessageWireFormat);
}