* Check that all bindings in GMLConfiguration have a target (XSD name), and that the GML ones
* have a Java type.
*/
@SuppressWarnings("unchecked")
public void testBindingTypes() throws Exception {
GMLConfiguration configuration = new GMLConfiguration();
assertEquals(GML.NAMESPACE, configuration.getNamespaceURI());
Map bindings = configuration.setupBindings();
for (Object object : bindings.values()) {
if (object instanceof Class) {
Class type = (Class) object;
if (Binding.class.isAssignableFrom(type)) {
Constructor c = type.getConstructors()[0];