" <symbol>{stockSymbol.text}</symbol>",
" </mx:arguments>",
" </mx:method>",
"</mx:RemoteObject>"
};
IMXMLRemoteObjectNode node = getMXMLRemoteObjectNode(code);
assertThat("getChildCount", node.getChildCount(), is(2));
IMXMLPropertySpecifierNode destinationNode = (IMXMLPropertySpecifierNode)node.getChild(0);
assertThat("", destinationNode.getName(), is("destination"));
IMXMLRemoteObjectMethodNode methodNode = (IMXMLRemoteObjectMethodNode)node.getChild(1);
assertThat("", methodNode.getName(), is("mx.rpc.remoting.mxml.Operation"));
assertThat("", methodNode.getMethodName(), is("GetQuote"));
}