public void testUnmarshalListAttribute() throws Exception {
ListAttribute listAttribute = (ListAttribute) getUnmarshalledElement(getMarshalledListAttribute());
WildcardAttribute[] attrs = listAttribute.getAnyAttributeArray();
assertEquals(new WildcardAttribute[]{
new WildcardAttribute(new QName("http://ws.apache.org/jaxme/test/misc/wildcards/2", "foo"), "value 1"),
new WildcardAttribute(new QName("http://ws.apache.org/jaxme/test/misc/wildcards", "bar"), "value 2")
}, attrs);
}