in src/it/annotations-it/verify.groovy [28:31]
def assertTypedAttribute(xml, name, type, value) {
def errorMsg = name + " " + type + " attribute does not match " + value
assert(xml.property.find{ it.@name == name && it.@type == type && it.@value == value }) : errorMsg
}