.validateReturnValue( user, method, returnValue );
//then
assertCorrectNumberOfViolations( constraintViolations, 1 );
Path propertyPath = constraintViolations.iterator().next().getPropertyPath();
assertDescriptorKinds( propertyPath, ElementKind.METHOD, ElementKind.RETURN_VALUE, ElementKind.PROPERTY );
assertNodeNames( propertyPath, "retrieveFallbackAddress", TestUtil.RETURN_VALUE_NODE_NAME, "street1" );
}