{
String[] code = new String[]
{
"<fx:Binding destination=' c.d ' twoWay=' false ' source=' a.b '/>"
};
IMXMLBindingNode node = getMXMLBindingNode(code);
assertThat("getChildCount", node.getChildCount(), is(2));
assertThat("getSourceAttributeNode", node.getSourceAttributeNode(), is((IMXMLBindingAttributeNode)node.getChild(1)));
assertThat("getSourceAttributeNode.getExpressionNode.getNodeID", node.getSourceAttributeNode().getExpressionNode().getNodeID(), is(ASTNodeID.MemberAccessExpressionID));
assertThat("getDestinationAttributeNode", node.getDestinationAttributeNode(), is((IMXMLBindingAttributeNode)node.getChild(0)));
assertThat("getDestinationAttributeNode.getExpressionNode.getNodeID", node.getDestinationAttributeNode().getExpressionNode().getNodeID(), is(ASTNodeID.MemberAccessExpressionID));
assertThat("getTwoWay", node.getTwoWay(), is(false));
}