" <fx:Boolean>true</fx:Boolean>",
" <fx:int>123</fx:int>",
" <fx:String>abc</fx:String>",
"</fx:Vector>"
};
IMXMLVectorNode node = getMXMLVectorNode(code);
assertThat("getType", node.getType().getQualifiedName(), is("Object"));
assertThat("getFixed", node.getFixed(), is(false));
assertThat("getChildCount", node.getChildCount(), is(3));
assertThat("[0]", ((IMXMLBooleanNode)node.getChild(0)).getValue(), is(true));
assertThat("[1]", ((IMXMLIntNode)node.getChild(1)).getValue(), is(123));
assertThat("[2]", ((IMXMLStringNode)node.getChild(2)).getValue(), is("abc"));
}