* Test method for 'org.geotools.gml2.strategies.GMLCoordinatesTypeBinding.parse(Element, Node[], Node[], Object)'
*/
public void testParseDefaults() throws Exception {
coordinates.setText("12.34,56.78 9.10,11.12 13.14,15.16");
Node node = createNode(coordinates, null, null, null, null);
GMLCoordinatesTypeBinding strategy = (GMLCoordinatesTypeBinding) container
.getComponentInstanceOfType(GMLCoordinatesTypeBinding.class);
CoordinateSequence c = (CoordinateSequence) strategy.parse(coordinates, node, null);
assertNotNull(c);